0%
0

1 / 30

1. Which data structure is used to implement a deque (double-ended queue)?

2 / 30

2. Which of the following is a characteristic of a binary search tree (BST)?

3 / 30

3. Find the word that is most opposite in meaning to "CONVERGE":

4 / 30

4. The ratio of two numbers is 3:5, and their sum is 64. What are the numbers?

5 / 30

5. In a binary tree, what is the maximum number of nodes at height 'h'?

6 / 30

6. Which of the following operations will be affected by endianness?

7 / 30

7. Which one of the following numbers is not a factor of 48?

8 / 30

8. Find the word most similar in meaning to "INVENTIVE":

9 / 30

9. What is the primary disadvantage of using a linked list over an array?

10 / 30

10. Which data structure is used to implement recursion?

11 / 30

11. Choose the word most similar in meaning to "ABUNDANT":

12 / 30

12. A person sold an article for ₹ 600 at a loss of 20%. What was the cost price of the article?

13 / 30

13. Choose the word which is most similar in meaning to "ELOQUENT":

14 / 30

14. Which data structure is used to represent hierarchical data?

15 / 30

15. Which data structure uses the Last In, First Out (LIFO) principle?

16 / 30

16. What will be the output of the following C code?

#include
int main() {
int x = 5, y = 10;
x = x++ + ++y;
printf("%d %d", x, y);
return 0;
}

17 / 30

17. What is the primary difference between a stack and a queue?

18 / 30

18. If a boat travels downstream at 15 km/h and upstream at 5 km/h, what is the speed of the boat in still water?

19 / 30

19. Which data structure is best suited for implementing a LRU (Least Recently Used) cache?

20 / 30

20. What is the space complexity of using an adjacency matrix to represent a graph with 'n' vertices?

21 / 30

21. Which of the following operations has a constant time complexity in a hash table?

22 / 30

22. Which city is known as the "City of Seven Hills"?

23 / 30

23. What is the primary disadvantage of using an array over a linked list?

24 / 30

24. Which data structure would you use to perform a breadth-first traversal of a graph?

25 / 30

25. If a sum becomes double at 5% per annum simple interest, in how many years will it become triple?

26 / 30

26. The sum of the ages of a father and son is 60 years. If the father is four times older than his son, what is the son’s age?

27 / 30

27. Which country recently exited the European Union, a process known as Brexit?

28 / 30

28. Which of the following is an example of a non-linear data structure?

29 / 30

29. Who is the youngest Nobel Prize laureate in history?

30 / 30

30. What is the primary characteristic of a balanced binary search tree?

Scroll to Top