KnowledgeBoat Logo

Output Questions for Class 10 ICSE Computer Applications

  • Java Math Lib Methods

    Predict the output of the following Java program snippet:

    System.out.println(Math.ceil(3.4)+Math.pow(2,3));
    
    View Answer

    24 Likes


  • Java Math Lib Methods

    Predict the output of the following Java program snippet:

    System.out.println(Math.sqrt(Math.min(42.5,42.25)));
    
    View Answer

    25 Likes


  • Java Math Lib Methods

    Predict the output of the following:

    System.out.println(Math.rint(-99.4));
    
    View Answer

    36 Likes


  • Java Math Lib Methods

    Predict the output of the following:

    System.out.println(Math.rint(98.5));
    
    View Answer

    27 Likes


  • Java Math Lib Methods

    Predict the output of the following:

    System.out.println(Math.floor(-0.88));
    
    View Answer

    45 Likes


  • Java Math Lib Methods

    Predict the output of the following:

    System.out.println(Math.max(-77.66, -87.45));
    
    View Answer

    38 Likes


  • Java Math Lib Methods

    Predict the output of the following:

    System.out.println(Math.min(-25.5, -12.5));
    
    View Answer

    35 Likes


  • Java Math Lib Methods

    Predict the output of the following:

    System.out.println(Math.ceil(65.5));
    
    View Answer

    21 Likes


  • Java Math Lib Methods

    Predict the output of the following:

    System.out.println(Math.round(-18.51));
    
    View Answer

    35 Likes


  • Java Math Lib Methods

    Predict the output of the following:

    System.out.println(Math.ceil(-0.95));
    
    View Answer

    37 Likes


Showing 41 - 50 of 147 Questions