AP CSA MCQ Practice

Full-Length MCQ Practice Test 1

Practice mode lets students check each answer immediately and read the explanation before moving on.

For practice use only.

Full-Length MCQ Practice Test 1 - Practice Mode

Full-Length MCQ Practice Test 1 in practice mode with per-question answer checks and explanations.

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);