Write a program for the Fibonacci series up to the nth term.

AnswerBot
2y
Program to generate Fibonacci series up to nth term.
Declare variables for first and second terms of the series
Use a loop to generate the series up to nth term
Print the series as output

PrepInsta
author
3y
Solution: num = int(input("Enter the number: ")); n1, n2 =0, 1 print("Fibonacci Series:", n1, n2, end= ",") for i in range(2,num): n3 = n1+ n2 n1 = n2 n2 = n3 print(n3, end="") print()
Help your peers!
Add answer anonymously...
Wipro Project Engineer interview questions & answers
A Project Engineer was asked 1w agoQ. What is the need for using Salesforce?
A Project Engineer was asked 1mo agoQ. Why have you not included C and C++ in your resume, considering you are a comput...read more
A Project Engineer was asked 1mo agoQ. Explain Interface with an example.
Popular interview questions of Project Engineer
A Project Engineer was asked 6d agoQ1. Explain the logic behind determining if a number is prime.
A Project Engineer was asked 4w agoQ2. Why have you not included C and C++ in your resume, considering you are a comput...read more
A Project Engineer was asked 1mo agoQ3. Explain Interface with an example.
Top HR questions asked in Wipro Project Engineer
A Project Engineer was asked 2mo agoQ1. What challenges did you face while working on the minor project?
A Project Engineer was asked 2mo agoQ2. Tell me about your final year project.
A Project Engineer was asked 2mo agoQ3. Would you prefer to work as a team leader or a team member?
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

