InterviewSolution
Saved Bookmarks
| 1. |
Fibonacci series in tuples: |
|
Answer» Fibonacci series is a series of numbers in which each number ( Fibonacci number ) is the sum of the two preceding numbers. The simplest is the series 1, 1, 2, 3, 5, 8, ETC. ... We are calling the recursive FUNCTION inside a for LOOP which iterates to the length of the Fibonacci sequence and prints the RESULT in the tuple. |
|