Find the missing number in the series: 2, 4, 8, 16, ?, 64
A 24 B 32 C 40 D 48
Each number is double the previous: 2, 4, 8, 16, 32, 64. Pattern is multiplication by 2
Complete the analogy: Dog : Bark :: Cat : ?
A Meow B Run C Jump D Play
A dog barks, similarly a cat meows. This is a sound association analogy
Find the odd one out: 12, 24, 36, 48, 58
A 12 B 36 C 48 D 58
12, 24, 36, 48 are all multiples of 12. 58 is not a multiple of 12
Which data structure uses LIFO (Last In First Out)?
A Queue B Stack C Array D Tree
Stack follows LIFO principle. Queue follows FIFO. Array and Tree are not strictly LIFO/FIFO structures
In OOP, what is inheritance?
A Creating multiple instances of a class B A class acquiring properties of another class C Hiding internal implementation details D Creating interfaces
Inheritance allows a class to inherit properties and methods from another class (parent/base class)
What does REST API stand for?
A Resource Exchange Standard Transfer API B Representational State Transfer API C Reliable Essential Service Transfer API D Rapid Endpoint Service Technology API
REST stands for Representational State Transfer, an architectural style for web services
In a relational database, a Primary Key must be:
A Non-unique B Unique and not null C Can contain null values D Can be duplicated
A Primary Key uniquely identifies each record and cannot contain null values
Which of the following is an advantage of Cloud Computing?
A Limited scalability B No internet required C On-demand resource availability and cost efficiency D Complete data isolation
Cloud computing provides scalability, flexibility, and pay-as-you-go pricing models
A password must contain at least one uppercase letter, one digit, and be at least 8 characters long. Which is valid?
A Abc1234 B ABC12345 C abcd1234 D Abcdefgh
ABC12345 has uppercase (A,B,C), digit (1,2,3,4,5), and is 8+ characters long
In the number 52,347, what is the place value of 3?
A 3 B 30 C 300 D 3000
In 52,347, the digit 3 is in the hundreds place, so its place value is 300
What is 15% of 80?
A 10 B 12 C 15 D 20
15% of 80 = 0.15 × 80 = 12
If the cost price of an item is Rs. 400 and it is sold at a loss of 15%, what is the selling price?
A Rs. 340 B Rs. 350 C Rs. 360 D Rs. 380
Loss = 15% of 400 = 60. Selling Price = 400 - 60 = Rs. 340
A person spends 30% of his income on food, 40% on rent, and 20% on utilities. If his remaining income is Rs. 5,000, what is his total income?
A Rs. 45,000 B Rs. 50,000 C Rs. 55,000 D Rs. 60,000
Percentage spent = 30 + 40 + 20 = 90%. Remaining = 10% = 5,000. Total income = 5,000 × 10 = Rs. 50,000
A bag contains 5 red balls, 7 blue balls, and 8 green balls. What is the probability of drawing a red ball?
A 4 1 B 5 1 C 20 7 D 20 5
Total balls = 5 + 7 + 8 = 20. Probability of red = 20 5 = 4 1
Find the missing number in the series: 1, 1, 2, 3, 5, 8, ?, 21
A 12 B 13 C 14 D 15
This is the Fibonacci series where each number is the sum of the previous two. 5 + 8 = 13
Complete the analogy: Clock is to Time as Thermometer is to ?
A Heat B Temperature C Weather D Scale
Clock measures time. Thermometer measures temperature. The relationship is the same.
In a row of 10 people, if Ramesh is 7th from the left, what is his position from the right?
A 3rd B 4th C 5th D 6th
Position from right = Total - Position from left + 1 = 10 - 7 + 1 = 4
Complete the sentence: 'Despite his wealth, he lived _____ lifestyle.'
A a modest B an modest C the modest D modest
'A modest' is grammatically correct. 'Modest' starts with a consonant sound, so we use 'a' not 'an'.
What does the idiom 'break the ice' mean?
A To literally break ice B To initiate conversation in a social setting C To make something cold D To surprise someone
'Break the ice' idiomatically means to initiate conversation or ease tension in a social situation.
In the context of REST APIs, what does POST primarily do?
A Retrieve data B Create new resources C Update existing resources D Delete resources
POST method is used to create new resources on the server. GET retrieves, PUT/PATCH updates, DELETE removes.