Write code for fibonacci series.
Sigiloso
The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones, starting from 0 and 1. The sequence follows this pattern: 0, 1, 1, 2, 3, 5, 8, 13, ... and so on. There are two main ways to generate a Fibonacci series in a program: 1. Using Iteration (Loop) 2. Using Recursion