Complete the analogy: Clock is to Time as Thermometer is to ?
Answer: B
Clock measures time. Thermometer measures temperature. The relationship is the same.
Q.547Medium
If all birds can fly and all eagles are birds, then all eagles can fly. This is an example of which type of reasoning?
Answer: B
This follows a logical structure (syllogism) from general premise to specific conclusion, which is deductive reasoning.
Q.548Easy
In a row of 10 people, if Ramesh is 7th from the left, what is his position from the right?
Answer: B
Position from right = Total - Position from left + 1 = 10 - 7 + 1 = 4
Q.549Medium
Which option follows the logical pattern? 2-4-6, 3-6-9, 4-8-12, 5-?-?
Answer: A
Pattern: Each set is n, 2n, 3n. For 5, it should be 5, 10, 15
Q.550Medium
If APPLE is coded as 1-16-16-12-5, how is ORANGE coded?
Answer: A
Each letter is coded by its position in the alphabet. O=15, R=18, A=1, N=14, G=7, E=5
Q.551Medium
Find the odd one out: 121, 144, 169, 196, 220
Answer: D
121(11²), 144(12²), 169(13²), 196(14²) are perfect squares. 220 is not a perfect square.
Q.552Hard
Statement: All managers are leaders. Some employees are managers. Conclusion: All employees are leaders.
Answer: C
Some employees are managers, but not all. So we cannot conclude that all employees are leaders.
Q.553Medium
Which word is most similar in meaning to 'Ephemeral'?
Answer: B
Ephemeral means short-lived or temporary. Transient has the same meaning. Other options mean lasting or permanent.
Q.554Medium
Choose the word that is opposite in meaning to 'Verbose':
Answer: C
Verbose means using many words. Laconic means brief or using few words - the opposite meaning.
Q.555Easy
Complete the sentence: 'Despite his wealth, he lived _____ lifestyle.'
Answer: A
'A modest' is grammatically correct. 'Modest' starts with a consonant sound, so we use 'a' not 'an'.
Q.556Medium
What is the main idea of the passage? 'Climate change is altering precipitation patterns worldwide. Regions experiencing increased rainfall face flooding, while others endure severe droughts.'
Answer: B
The passage explains that climate change affects different regions differently - some get more rain (floods) while others get less (droughts).
Q.557Medium
Identify the error: 'Each of the students are required to submit their projects by Friday.'
Answer: A
'Each' is singular, so it should be 'is' not 'are'. Correct sentence: 'Each of the students is required to submit their project by Friday.'
Q.558Easy
What does the idiom 'break the ice' mean?
Answer: B
'Break the ice' idiomatically means to initiate conversation or ease tension in a social situation.
Q.559Medium
Which of the following is NOT a programming paradigm?
Answer: C
Linear Programming is an optimization technique, not a programming paradigm. The others are paradigms used in software development.
Q.560Medium
Which data structure is best for implementing a queue?
Answer: B
Linked List is ideal for queue implementation as it provides O(1) insertion and deletion at both ends.