For practice use only.
Full-Length MCQ Practice Test 1 - Timed Mode
Full-Length MCQ Practice Test 1 with a 90-minute timer for AP Computer Science A MCQ pacing practice.
Time left 90:00
Question 1 of 42
Answered 0 of 42
Choose one answer.
A tutoring dashboard stores the total number of completed practice posts and the number of study days. What is printed?
int completed = 17;
int days = 5;
double average1 = completed / days;
double average2 = (double) completed / days;
System.out.print(average1 + " " + average2);