InterviewSolution
Saved Bookmarks
| 1. |
What is the first term of Fibonacci sequence?(a) 0(b) 1(c) 2(d) 3The question was posed to me at a job interview.This question is from Sequences in chapter Sequences and Series of Mathematics – Class 11 |
|
Answer» CORRECT choice is (B) 1 Explanation: a1=1 and a2=1. an = an-1 + an-2, n>2. This is a recurrence relation which gives the Fibonacci SEQUENCE. |
|