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.

Code Tracing 01 - If/Else Tracing: track the final printed value.

int score = 18;
if (score > 36)
  System.out.print("A");
else if (score > 28)
  System.out.print("B");
else if (score > 20)
  System.out.print("C");
else
  System.out.print("D");