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.
What is the main difference between an array and a linked list?
Answer: B
Arrays allocate continuous memory blocks; linked lists use nodes scattered in memory
Q.178Medium
Which of the following is NOT a cloud service model?
Answer: D
SaaS (Software as Service), PaaS (Platform as Service), IaaS (Infrastructure as Service) are main cloud models. DaaS is Data as Service but not standard
Q.179Medium
Which sorting algorithm has the best average time complexity?
Answer: B
Quick sort has average time complexity O(n log n), better than bubble sort O(n²)
Q.180Medium
What is encapsulation in OOP?
Answer: B
Encapsulation is bundling data (variables) and methods together while hiding implementation details