Home / Java Programming / Java.lang Class :: Discussion

Discussion :: Java.lang Class

  1. What is the value of "d" after this line of code has been executed?

    double d = Math.round ( 2.5 + Math.random() );

  2. A.
    2
    B.
    3
    C.
    4
    D.
    2.5

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    The Math.random() method returns a number greater than or equal to 0 and less than 1 . Since we can then be sure that the sum of that number and 2.5 will be greater than or equal to 2.5 and less than 3.5, we can be sure that Math.round() will round that number to 3. So Option B is the answer.


Be The First To Comment