0%
0

1 / 30

1. Antonym of "INNOVATIVE":

2 / 30

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

3 / 30

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

4 / 30

4. If 'PAPER' is coded as 'QBPFS', what is the code for 'BOOK'?

5 / 30

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

6 / 30

6. What is the result of the following bitwise operation?
int x = 12; // 00001100 in binary
int y = 7; // 00000111 in binary
int z = x & y;

7 / 30

7. What is the time complexity of inserting an element into a heap?

8 / 30

8. If the cost price of 20 articles is equal to the selling price of 15 articles, what is the profit percentage?

9 / 30

9. Name the highest mountain outside of Asia.

10 / 30

10. What is the primary advantage of a doubly linked list over a singly linked list?

11 / 30

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

12 / 30

12. What is the time complexity of merging two sorted arrays?

13 / 30

13. In a certain code, "FESTIVAL" is written as "GFTUJWBM". How is "TRADITION" written in that code?

14 / 30

14. What is 30% of 450?

15 / 30

15. If a number is increased by 25%, it becomes 150. What is the original number?

16 / 30

16. Choose the word that is most opposite in meaning to "PERSISTENT":

17 / 30

17. What is the maximum number of children a node can have in a binary tree?

18 / 30

18. What is the time complexity of adding an element to the end of a dynamic array?

19 / 30

19. What is the average time complexity of accessing an element in a balanced binary search tree?

20 / 30

20. In a circular linked list, the last node points to which node?

21 / 30

21. What is the output of the following code?
#include
int main() {
int arr[] = {1, 2, 3, 4};
printf("%d", arr[3]);
return 0;
}

22 / 30

22. Two trains are moving in opposite directions at speeds of 60 km/h and 90 km/h. If the length of each train is 150 meters, how much time will they take to cross each other?

23 / 30

23. Choose the correct synonym for "ANONYMOUS":

24 / 30

24. Which of the following algorithms is used for finding the shortest path in a graph with non-negative weights?

25 / 30

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

26 / 30

26. Which data structure is used to implement recursion?

27 / 30

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

28 / 30

28. If the perimeter of a square is 32 cm, what is the area of the square?

29 / 30

29. What is the capital of the European Union?

30 / 30

30. What is the main characteristic of a binary search tree (BST)?

Scroll to Top