Java Series Programs
Java Iterative Stmts
Write a program in Java to print the following series:
3, 6, 12, 24, 48, ….. to n
View Answer46 Likes
User Defined Methods
Design a class to overload a function series( ) as follows:
(a) void series (int x, int n) – To display the sum of the series given below:
x1 + x2 + x3 + ………. xn terms
(b) void series (int p) – To display the following series:
0, 7, 26, 63 ………. p terms
(c) void series () – To display the sum of the series given below:
1/2 + 1/3 + 1/4 + ………. 1/10
View Answer141 Likes
User Defined Methods
Design a class to overload a method series( ) as follows:
- double series(double n) with one double argument and returns the sum of the series.
sum = (1/1) + (1/2) + (1/3) + ………. + (1/n) - double series(double a, double n) with two double arguments and returns the sum of the series.
sum = (1/a2) + (4/a5) + (7/a8) + (10/a11) + ………. to n terms
View Answer212 Likes
- double series(double n) with one double argument and returns the sum of the series.
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
3, 6, 9, 12,
View Answer76 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
4, 8, 16, 32,
View Answer82 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
1.5, 3.0, 4.5, 6.0,
View Answer76 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
0, 7, 26,
View Answer105 Likes
Java Nested for Loops
Write a program in Java to print the series:
8, 88, 888, 8888, 88888, 888888
View Answer30 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
1, 9, 25, 49,
View Answer69 Likes
Java Iterative Stmts
Write the program in Java to display the first ten terms of the following series:
4, 16, 36, 64,
View Answer58 Likes
Showing 11 - 20 of 63 Questions