0%
0

1 / 30

1. What is the smallest country by land area?

2 / 30

2. What is the space complexity of a dynamic array?

3 / 30

3. What is the main advantage of a binary search tree over a simple binary tree?

4 / 30

4. In a family of six members, P is the mother of Q. R is the daughter of S. T is the father of U and S is the husband of P. How is Q related to R?

5 / 30

5. Which of the following algorithms is the fastest in terms of average time complexity for sorting?

6 / 30

6. Which country is hosting the 2024 Summer Olympics?

7 / 30

7. Which of the following is not a type of tree traversal?

8 / 30

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

9 / 30

9. What is the value of 45÷0.5×445 \div 0.5 \times 445÷0.5×4?

10 / 30

10. Find the correct word to complete the sentence: "Despite his _____, he managed to complete the marathon."

11 / 30

11. What is the average time complexity of searching for an element in a binary search tree (BST)?

12 / 30

12. Fill in the blank: "She was very _____ with her results after the exam."

13 / 30

13. Which type of queue allows insertion and deletion from both ends?

14 / 30

14. In a binary tree, what is the time complexity of finding the height of the tree?

15 / 30

15. If 5 cats can catch 5 mice in 5 minutes, how many cats are needed to catch 100 mice in 100 minutes?

16 / 30

16. What does the following code print?
#include
#define FUN(x) x*x
int main() {
int a = 5;
printf("%d", FUN(a+2));
return 0;
}

17 / 30

17. Complete the analogy: "Author is to Book as Painter is to ____":

18 / 30

18. Which of the following is a dynamic data structure?

19 / 30

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

20 / 30

20. In a priority queue, which element is removed first?

21 / 30

21. Which of the following is true for a doubly linked list?

22 / 30

22. Which algorithm is most suitable for sorting a small number of elements?

23 / 30

23. Name the highest mountain outside of Asia.

24 / 30

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

25 / 30

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

26 / 30

26. In a class of 40 students, the average age of the boys is 15 years and the average age of the girls is 16 years. If the average age of the whole class is 15.5 years, how many boys are there in the class?

27 / 30

27. In a binary heap, how is the parent of a node at index 'i' found?

28 / 30

28. In which data structure are elements accessed by a unique index?

29 / 30

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

30 / 30

30. If the circumference of a circle is 44 cm, what is the radius of the circle? (Use π=227\pi = \frac{22}{7}π=722)

Scroll to Top