Placement Papers - MCQ Practice Questions
Campus recruitment tests follow their own rhythm: a fixed time limit, a mix of sections, and negative marking that punishes guessing. This collection mirrors that format with quantitative aptitude, logical reasoning, verbal ability, and technical questions of the kind IT and core companies actually ask. Use it to build exam stamina, not just to check whether you know a topic.
658 questions | 100% Free
What is the space complexity of QuickSort?
In a BFS (Breadth-First Search), what data structure is used?
What is the correct way to check if a number is a power of 2?
Which sorting algorithm is stable and has O(n log n) worst-case complexity?
What is the result of 1 XOR 1?
In dynamic programming, what is memoization?
What is the time complexity of finding the median in a sorted array?
What is the space complexity of DFS using recursion?
What is the correct output of: print(2 3 2) in Python?
In microservices architecture, what is an API Gateway?
What principle is followed when designing Google's systems?
What is eventual consistency in distributed systems?
What is the CAP theorem in distributed systems?
What does MapReduce do?
What is the purpose of a load balancer?
In TCP/IP model, which layer handles IP addresses?
A train travels from City A to City B at 60 km/h and returns at 40 km/h. The total distance between the two cities is 240 km. What is the average speed of the train for the entire journey?
In a sequence, each number is the sum of the previous two numbers. If the 5th number is 20 and the 6th number is 32, what is the 4th number?
What is the output of the following C code snippet?
```c
int x = 5;
printf("%d %d %d", x++, x++, x++);
```
In Microsoft's Azure, what is the primary purpose of an Azure Virtual Network (VNet)?