AP CSA Unit-Level MCQ
Casting and Math.random
Practice mode with 50 Java-focused questions, immediate answer checks, and explanations.
For practice use only.
Casting and Math.random MCQ Practice
Casting and Math.random AP Computer Science A topic practice with 50 original Java MCQs and immediate explanations.
Question 1 of 50
Answered 0 of 50
Choose one answer.
Code Tracing 01 - Casting and Math.random: track the final printed value.
int completed = 18;
int bonus = 5;
int days = 3;
double average = (double) (completed + bonus) / days;
System.out.printf("%.6f", average);