81. The _________ is used in an elegant sorting algorithm.
Correct answer: (A)
Heap sort.
82. The advantage of a two-way list and a circular header list is combined into a _________.
Correct answer: (A)
two-way circular header list.
83. The average number of key comparisons done in a successful sequential search in a list of length n is _________.
Correct answer: (D)
n+1/2.
84. A _________ is a linked list which always contains a special node called the header node, at the beginning of the list.
Correct answer: (C)
Header Linked List.
85. The binary tree that has n leaf nodes. The number of nodes of degree 2 in this tree is
Correct answer: (B)
n-1
86. The children node of same parent is called_________.
Correct answer: (C)
sibling
87. The comparison tree is also called as _________.
Correct answer: (A)
decision tree.
88. The complexity of Binary search algorithm is _________.
Correct answer: (B)
O(log n ).
89. The complexity of Bubble sort algorithm is _________.
Correct answer: (C)
O(n2).
90. The complexity of linear search algorithm is_________.
Correct answer: (B)
O(n).