Data Structure MCQs
1) ___________ is a data organization, management, and storage format that enables efficient access and modification. A) Data Analysis B) Data structure C)Data Science D) Data Load Correct Ans: Data structure 2) An array is a collection of items stored at ___________ memory locations. A) contiguous B) permanent C) temporary D) dynamic Correct Ans: contiguous 3) The elements in a linked list are linked using ___________. A) object B) structure C) pointers D) classes Correct Ans: pointers 4) The _______ operation in Doubly Link List is more efficient if pointer to the node to be deleted is given. A) delete B) update C) insert D) modify Correct Ans:delete 5) ___________ is a linear data structure which follows a particular order in which the operations are performed. A) link list B) Stack C) array D) heap Correct Ans: Stack 6) Each element in a _________ can have only 2 children A) binary tree B) stack C) hash table D) array Correct Ans...