Multiple choice

What two statements are true about the result obtained from calling Math.random()?

  1. The result is less than 0.0.
  2. The result is greater than or equal to 0.0..
  3. The result is less than 1.0.
  4. The result is greater than 1.0.
  5. The result is greater than or equal to 1.0.

  1. 1 and 2

  2. 2 and 3

  3. 3 and 4

  4. 4 and 5

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

(1) and (2) are correct. The result range for random() is 0.0 to < 1.0; 1.0 is not in range.