InterviewSolution
Saved Bookmarks
| 1. |
Four numbers have been given, out which three are alike in some manner and one is different. select the number that is different from the rest.1. 412. 353. 394. 37 |
|
Answer» Correct Answer - Option 1 : 41 The logic is: 1. 41 → 4 + 1 = 5, which is odd 2. 35 → 3 + 5 = 8, which is even 3. 39 → 3 + 9 = 12, which is even 4. 37 → 3 + 7 = 10, which is even Hence, ‘41’ is the odd one out. |
|