0%
0

1 / 30

1. If a car covers 240 km in 6 hours, what is its speed?

2 / 30

2. Choose the correct synonym for "VITAL":

3 / 30

3. Which traversal method uses a queue to visit nodes in level order?

4 / 30

4. What is the primary use of a priority queue?

5 / 30

5. Which algorithm is used for sorting an array by repeatedly swapping adjacent elements if they are in the wrong order?

6 / 30

6. Which of the following is not a storage class in C?

7 / 30

7. 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?

8 / 30

8. What will be the compound interest on ₹ 1,000 at 10% per annum for 2 years?

9 / 30

9. What is the smallest country by land area?

10 / 30

10. If 3x + 4 = 19, what is the value of x?

11 / 30

11. Name the highest mountain outside of Asia.

12 / 30

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

13 / 30

13. Which of the following algorithms is used to find the minimum spanning tree of a graph?

14 / 30

14. What is the time complexity of inserting an element at the beginning of a linked list?

15 / 30

15. 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;
}

16 / 30

16. Which of the following is not a characteristic of a heap?

17 / 30

17. If a man earns ₹ 1,200 in 15 days, how much will he earn in 25 days?

18 / 30

18. In a doubly linked list, how many pointers does each node have?

19 / 30

19. Find the synonym for "PERSISTENT":

20 / 30

20. Which type of binary tree has every level fully filled except possibly the last?

21 / 30

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

22 / 30

22. Which of the following is a linear data structure?

23 / 30

23. 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?

24 / 30

24. Find the missing number: 7, 14, 28, 56, ?

25 / 30

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

26 / 30

26. In a hash table, what is the purpose of a hash function?

27 / 30

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

28 / 30

28. What is the primary purpose of a sentinel node in a linked list?

29 / 30

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

30 / 30

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

Scroll to Top