111. The number of swapping needed to sort numbers 8,22,7,9,31,19,5,13 in ascending order using bubble sort is ?
Correct answer: (D)
14
112. The OS of a computer may periodically collect all the deleted space onto the free storage list. This technique is called _________.
Correct answer: (B)
garbage collection.
113. The pointer of the last node contains a special value called_________.
Correct answer: (B)
index pointer.
114. The possibility of two different keys k1 & k2 yielding the same hash address is called__________.
Correct answer: (C)
overlapping.
115. The Postfix equivalent of the Prefix Notation * + ab - cd is
Correct answer: (A)
ab + cd - *
116. The queue which wraps around upon reaching the end of the array is called as_________.
Correct answer: (A)
circular queue.
117. The sequence (1,1) (2,1) (3,1) (1,2) (2,2) (3,2) . . . . represents _________.
Correct answer: (B)
column major order.
118. The situation in linked list START = NULL is called _________
Correct answer: (B)
Underflow
119. The space factor when determining the efficiency of algorithm is measured by_________.
Correct answer: (A)
counting the maximum memory needed by the algorithm.
120. The special list which consists of unused memory space is called __________.
Correct answer: (D)
Free storage list.