Problem:
Question: Write a function that prints a series called Tribonacci in which each term is the sum of the three preceding terms. The first three terms of the Tribonacci series are 0, 1 and 2. The function takes ‘n' as a parameter and prints the first ‘n' terms.
Required:
Question 1: Write the Tribonacci function as an iterative function (based on the loop).
Question 2: Write the Tribonacci function as a recursive function.
Please write the code in detail with comment