Series Programming Questions and Solutions

In this article, We will discuss Series C/Java/C++/Python programs with Output.

The sum of the series program in C/Java/C++/Python


1. Write a program to find the sum of series 1+2+3..+N.

2. Write a program to find the sum of series 1+3+5+7..+N.

3. Write a Program to find the sum of series 1^2+2^2+3^2...+N^2.

4. Write a Program to find the sum of series 1^1+2^2+3^3...+N^N

5. Write a Program to find the sum of series 1/1+1/2+1/3..+1/N.

6. Write a Program to find the sum of series 1+X+X^3...+X^N

7. Write a Program to find the sum of series 1+X+X^2/2...+X^N/N

8. Write a Program to find the sum of series 1+X+X^2/2!+X^3/3!...+X^N/N!

9. Write a program to find the sum of series (1+(1+2)+(1+2+3)+...till N)

10. Write a program to find the sum of series (1+(1*2)+(1*2*3)+...till N)

11. Write a Program to find the sum of series 1!+2!+3!...+n!

12. Write a program to find the sum of series 1!/1+2!/2+3!/3...+n!/n

13. Write a program to find the sum of series 1^1/1+2^2/2+3^3/3...+n^n/n

14. Write a program to find the sum of series 1^1/1!+2^2/2!+3^3/3!...+n^n/n!

15. Write a program to find the sum of series 1/2-2/3+3/4-4/5+5/6...+N/N+1

16. Write a Program to the find sum of series 5^2+10^2+15^3+.....N^2

17. Write a program to find the sum of series 1+(1+3)+(1+3+5)+....+n

18. Write a program to find the sum of series 1+4-9+16-25+.....+N

19. Write a program to find the sum of series 1+1/3+1/5+1/7+.....1/(N+2)

20. Write a Program to find the sum of series 1+4+9+16+25+.....+N

21. Write a program to find the sum of series 1/2!+2/3!+3/5!+4/6!+.....N/(N+1)!










31. Write a Program to Find the sum of series 1³+2³+3³+4³.....+N³.


Program to print series in C/C++/Java/Python


1. Write a program Program to print Arithmetic series 1 4 7 10...

2. Write a Program to Print Square Number series 1 4 9 16...

3. Write a Program to print Cube Number series 1 8 27 64...

4. Write a Program to print Triangular Number series 1 3 6 10 15 ...


















Post a Comment

1 Comments

Please do not Enter any spam link in the comment box