InterviewSolution
Saved Bookmarks
| 1. |
0, 2, 3, 5, 8, 10, 15, 17, 24, 26, ? |
| Answer» The given sequence is a combination of two series : I. 0, 3, 8, 15, 24, ? and II. 2, 5, 10, 17, 26 The pattern in each one of I and II is + 3, + 5, + 7, + 9, ..... So, missing term = 24 + 11 = 35. | |