

InterviewSolution
Saved Bookmarks
1. |
You are given two series in two rows. In the first row, a full series is given which follows a specific pattern. The second row has a series, similar to the first series but only first element of this series is produced followed by (A), (B), (C), (D) and (E) for the subsequent elements. You have to complete the series starting with a given number and answer the question that follows. {:("3","8","30","132","680","4110"),("4","A","B","C","D","E"):} What will come in place of C? |
Answer» 156 `xx2+2,xx3+6,xx4+12,xx5+20,xx6+30` STARTING with 4, the new SERIES is 4, 10, 36, 156. |
|