Final answer:
The correct statement that generates a random number in the [-101..-41] range is (A) int number = rand.nextInt(61) - 101
Step-by-step explanation:
The correct statement that generates a random number in the [-101..-41] range is (A) int number = rand.nextInt(61) - 101;
To understand why, let's break down the statement:
- rand.nextInt(61): This generates a random integer between 0 and 60.
- rand.nextInt(61) - 101: This subtracts 101 from the random number generated in the previous step, resulting in a number between -101 and -41.
Therefore, option (A) is the correct statement to generate a random number in the specified range.