Introduction To Data Structures - Study Mode

[#51] Linked lists are not suitable for the implementation of . . . . . . . .
Correct Answer

(D) Binary search

[#52] What is the best case time complexity of deleting a node in a Singly Linked list?
Correct Answer

(D) O (1)

[#53] How do you calculate the pointer difference in a memory efficient double linked list?
Correct Answer

(B) pointer to previous node xor pointer to next node

[#54] What are the advantages of arrays?
Correct Answer

(D) Easier to store elements of same data type

[#55] Given an array of size n, let's assume an element is 'touched' if and only if some operation is performed on it(for example, for performing a pop operation the top element is 'touched'). Now you need to perform Dequeue operation. Each element in the array is touched atleast?
Correct Answer

(D) Four times