AP CSA Unit-Level MCQ

If/Else Tracing

Practice mode with 50 Java-focused questions, immediate answer checks, and explanations.

For practice use only.

If/Else Tracing MCQ Practice

If/Else Tracing 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.

What is printed?

int score = 17;
if (score >= 80)
  System.out.print("ready");
else
  System.out.print("review");