Java Series Programs
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
0, 3, 8, 15,
View Answer56 Likes
User Defined Methods
Design a class to overload a function sumSeries() as follows:
(i) void sumSeries(int n, double x): with one integer argument and one double argument to find and display the sum of the series given below:
(ii) void sumSeries(): to find and display the sum of the following series:
View Answer81 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
24, 99, 224, 399,
View Answer54 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
2, 5, 10, 17,
View Answer84 Likes
Java Iterative Stmts
Write a program in Java to find the sum of the given series:
1 + 4 + 9 + …… + 400
View Answer93 Likes
Java Iterative Stmts
Write a program in Java to find the sum of the given series:
1 + (1/2) + (1/3) + …… + (1/20)
View Answer40 Likes
Java Iterative Stmts
Write a program in Java to find the sum of the given series:
1 + (1/3) + (1/5) + …… + (1/19)
View Answer30 Likes
Java Iterative Stmts
Write a program in Java to find the sum of the given series:
(1/2) + (2/3) + (3/4) + …… + (19/20)
View Answer68 Likes
Java Iterative Stmts
Write a program in Java to find the sum of the given series:
2 - 4 + 6 - 8 + …… - 20
View Answer42 Likes
Java Iterative Stmts
Write a program in Java to find the sum of the given series:
(1*2) + (2*3) + …… + (19*20)
View Answer40 Likes
Showing 21 - 30 of 63 Questions