Answer:
A 47.1 in
Explanation:
This is a pretty simple Java (though probably applicable to all programming) question:
Math. Random() returns a number between zero and one.
If I want to return an integer between zero and hundred, I will do:
(int) Math. Floor(Math. Random() * 101)
Between one and hundred, I would do:
(int) Math. Ceil(Math. Random() * 100)
But what if I wanted to get a number between three and five? Will it be like following statement: