Asked inTCS,Ninja

In the given series: 0,0,2,1,4,2,6,3,8,4,10,5,12,6,14,7,16,8 Write a program to find the nth term in this series.

AnswerBot
1y

Program to find the nth term in a given series.

  • The series follows a pattern of even and odd numbers multiplied by the position of the term.

  • Use a loop to generate the series and return the nth term.

  • For...read more

PrepInsta
author
2y
n = int(input("enter the number:")) a = 0 b=0 for i in range(1,n+1) if(i%2!=0) a=a+2 else: b = b+1 if(n%2!=0) print('{}'.format(a-2)) else: print('{}'.format(b-1))
Help your peers!
Add answer anonymously...
TCS Ninja Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
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

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter