Question: Assuming you have a statement, Random rand = new Random ( ) ; . Which of the following is best for generating a random integer

Assuming you have a statement, Random rand = new Random(); . Which of the following is best for generating a random integer with a value of 0 or 1?
(int)(random.nextInt()+1);
(int)(rand.nextInt();
rand.nextDouble()+0.5;
rand.nextInt(2);
rand.nextInt(1);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!