The concatenation of two lists can be performed in O(1) time. Which of the following variation of the linked list can be used?
Anonymous Quiz
27%
Singly linked list
33%
Doubly linked list
23%
Circular doubly linked list
17%
Array implementation of list
Explanation: We can easily concatenate two lists in O (1) time using singly or doubly linked list, provided that we have a pointer to the last node at least one of the lists. But in case of circular doubly linked lists, we will break the link in both the lists and hook them together. Thus circular doubly linked list concatenates two lists in O (1) time.
Which one of the following code is equivalent to call a function "x" of the class "a" which have two arguments g and h?
Anonymous Quiz
46%
a,x(g,h);
27%
x(g) &&a.x(g);
21%
x(a,g);
5%
(g,h);
What will be the output of the following Java code snippet?
Anonymous Quiz
11%
Runtime Error
26%
EnumNotDefined Exception
33%
It runs successfully
30%
Compilation Error
The C library function rewind() is used for re-position the file pointer at the beginning of the file.
Anonymous Quiz
83%
True
17%
False
Hey hey hey 👋
New quiz update is here!
I am sorry guys but I usually get carried away being too busy with my work so I just don't have time to update about our quiz sometimes.
5 rounds are behind us and we are at the middle of our quiz.
I summed up results by now and shared them in this document.
Each right answer gets you 3 points and additional 1-50 points is assigned to you based on your position.
Don't forget that prizes for this quiz is given by switch community so please make sure to join me in their app:
👉 Download button in following link - https://switch.click/bigdataspecialist
We will close HTML round (6th) tomorrow.
Keep braining 🧠
@bigdataspecialist
New quiz update is here!
I am sorry guys but I usually get carried away being too busy with my work so I just don't have time to update about our quiz sometimes.
5 rounds are behind us and we are at the middle of our quiz.
I summed up results by now and shared them in this document.
Each right answer gets you 3 points and additional 1-50 points is assigned to you based on your position.
Don't forget that prizes for this quiz is given by switch community so please make sure to join me in their app:
👉 Download button in following link - https://switch.click/bigdataspecialist
We will close HTML round (6th) tomorrow.
Keep braining 🧠
@bigdataspecialist
Consider the following definition in c programming language.
Which of the following c code is used to create new node?
Which of the following c code is used to create new node?
Anonymous Quiz
50%
ptr = (NODE*)malloc(sizeof(NODE));
19%
ptr = (NODE*)malloc(NODE);
25%
ptr = (NODE*)malloc(sizeof(NODE*));
6%
ptr = (NODE)malloc(sizeof(NODE));
Which one of the following code is equivalent to the following given code?
a.x(g,h);
a.x(g,h);
Anonymous Quiz
19%
x (g) &&a.x (h);
42%
a [ "x" ] ( g , h );
34%
a (x )[ "g" , "h" ];
5%
x( g&&h );
Which method returns the elements of Enum class?
Anonymous Quiz
29%
getEnums()
15%
getEnumConstants()
20%
getEnumList()
36%
getEnum()