1. What is the time complexity to access an element in an array using the index?
2. Which of the following is not true about a singly linked list?
3. Which data structure uses LIFO (Last In First Out) principle?
4. Which of the following queue types allows insertion at one end and deletion at the other?
5. What is the maximum number of nodes in a binary tree of height h?
6. What is the best-case time complexity of binary search?
7. Which of these sorting algorithms has the worst-case time complexity of O(n²)?
8. What is the primary advantage of using a hash table?
9. What data structure is commonly used for Breadth-First Search (BFS) in graphs?
10. Which of the following problems is best solved using recursion?