InterviewSolution
Saved Bookmarks
| 1. |
Four pairs of numbers have been given, out of which three are alike in some manner, while one is different. Choose out the odd one.1. 64 : 4 : 102. 169 : 100 : 233. 49 : 81 : 164. 225 : 36 : 22 |
|
Answer» Correct Answer - Option 4 : 225 : 36 : 22 The pattern followed here is: Square root of 1st term + Square root of 2nd term = Third term Option 1 → √64 + √4 = 8 + 2 = 10 Option 2 → √169 + √100 = 13 + 10 = 23 Option 3 → √49 + √81 = 7 + 9 = 16 Option 4 → √225 + √36 = 15 + 6 = 21 ≠ 22 Hence, '225 : 36 : 22' is the odd pair. |
|