(A) 11
(B) 15
(C) 18
(D) 60
Author:
What is stack is also called?
(A) Last in last out
(B) First in first out
(C) First in last out
(D) Last in first out
Binary search tree whose left sub-tree and right sub-tree differ in height by at most 1 unit is called?
(A) Lemma tree
(B) Red Black tree
(C) AVL tree
(D) None of the above
Which among the following are the levels of implementation of data structure?
(A) Implementation level
(B) Abstract level
(C) Application level
(D) All of the above
Which among following concept makes extensive use of arrays?
(A) Spatial locality
(B) Caching
(C) Scheduling of processes
(D) Binary trees
Which is correct among following?
(A) for(int a=0; a<=10; a++)
(B) for(int a=0: a<=10: a++)
(C) for(int a=0; a<=10; a++);
(D) All are correct[showhide type="post" more_text="►Correct Option" less_text="Show less..."]
Correct Answer is: A
[/showhide]
For, while and do is the?
(A) Keywords
(B) Data type
(C) Variable
(D) All of the above
Correct syntax of while loop is?
(A) while (condition) [body of loop]
(B) while {body of loop}
(C) while (condition) {body of loop}
(D) while (condition); {body of loop}