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 Answer

    55 Likes


  • User Defined Methods

    View Answer

    66 Likes


  • Java Iterative Stmts

    Write the program in Java to display the first ten terms of the following series:

    24, 99, 224, 399,

    View Answer

    52 Likes


  • Java Iterative Stmts

    Write the program in Java to display the first ten terms of the following series:

    2, 5, 10, 17,

    View Answer

    74 Likes


  • Java Iterative Stmts

    Write a program in Java to find the sum of the given series:

    1 + 4 + 9 + …… + 400

    View Answer

    78 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 Answer

    32 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 Answer

    26 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 Answer

    56 Likes


  • Java Iterative Stmts

    Write a program in Java to find the sum of the given series:

    2 - 4 + 6 - 8 + …… - 20

    View Answer

    33 Likes


  • Java Iterative Stmts

    Write a program in Java to find the sum of the given series:

    (1*2) + (2*3) + …… + (19*20)

    View Answer

    37 Likes


Showing 21 - 30 of 63 Questions