You run the following program:
import .Random;
class ExamPrep {
public static void main(String[] args){
Random r = new Random(23);
int a = r.nextInt(100);
int b = r.nextInt(100);
int c = r.nextInt(100);
System ("%d,%d,%d%n", a, b, c);
}
} The output is 27,48,83.
What will the output be if you run it again? Choose the correct answer:
A. 27,48,83
B. A different set of three random numbers between 0 (inclusive) and 100 (exclusive)
C. This code will not compile
D. This code will fail with an exception at runtime