Write a code on Fibonacci series,
AnswerBot
1y
Code for Fibonacci series
Use recursion or iteration to generate the series
Start with 0 and 1, then add the previous two numbers to get the next
Can be optimized using memoization or dynamic programming
My Pc
9mo
function fs(num) {
if (num <= 1) {
return num
}
return fs(num - 1) + fs(num - 2)
}
num = 10
for (let i = 1; i < num; i++) {
console.log(fs(i))
}
Help your peers!
Add answer anonymously...
Top TCS Software Developer fresher interview questions & answers
Popular interview questions of Software Developer fresher
Top HR questions asked in TCS Software Developer fresher
Stay ahead in your career. Get AmbitionBox app
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+
Reviews
4 L+
Interviews
4 Cr+
Salaries
1 Cr+
Users/Month
Contribute to help millions
Get AmbitionBox app