InterviewSolution
Saved Bookmarks
| 1. |
0, 2, 3, 5, 8, 10, 15, 18, 24, 26, 35 |
| Answer» The given sequence is a combination of two series: I. 0, 3, 8, 15, 24, 35 and II. 2, 5, 10, 18, 26 The pattern in both I and II is + 3, + 5, + 7, + 9,..... So, in II, 18 is wrong and must be replaced by (10 + 7) i.e. 17. | |