Total Questions : 30
Expected Time : 30 Minutes

1. What is the primary disadvantage of using a circular linked list?

2. In an array, what is the term for a subarray where the sum of elements is maximized?

3. Discuss the trade-offs between linear probing and quadratic probing in open addressing hash tables.

4. What is the term for the operation of combining two arrays into a single array?

5. In the context of arrays, what is the term for the process of rearranging elements in a specific order?

6. In a skip list, what is the term for the process of searching for a node?

7. What is the time complexity of finding the length of an array?

8. What is the time complexity of searching for an element in a sorted array using binary search?

9. In an array, what is the term for the difference between the highest and lowest values?

10. In a linked list, how do you insert a new element at the beginning?

11. Explain the concept of amortized analysis in the context of data structures.

12. In a linked list, what is the term for the process of removing the last element?

13. What is the key feature of a dynamic array?

14. What is the time complexity of deleting an element from the end of an array?

15. In an array, what is the term for a subarray that is sorted in ascending order?

16. What is the main advantage of a skip list over a binary search tree?

17. In the context of arrays, what is an 'in-place' algorithm?

18. In a doubly linked list, how do you delete a node if you only have access to that node (not the previous one)?

19. What is the main advantage of a doubly linked list over a singly linked list?

20. In a circular linked list, what is the term for the process of rotating the entire list?

21. What is the primary advantage of using a Patricia trie over a standard trie?

22. What is the time complexity of searching for an element in an unsorted array?

23. What is the primary disadvantage of using a Fibonacci heap over a binary heap?

24. Discuss the key characteristics and use cases of a Fibonacci heap in comparison to a binary heap.

25. How do you insert an element at the end of an array?

26. What is the primary advantage of using a skip list over a hash table?

27. What is the time complexity of randomly accessing an element in an array?

28. In a circular linked list, how do you determine the end of the list?

29. In an array, what is the term for the process of removing duplicate elements?

30. What is the index of the first element in an array?