AP CSA Unit-Level MCQ

Code Tracing: If/Else Tracing

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

For practice use only.

Code Tracing: If/Else Tracing MCQ Practice

Code Tracing: 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 by this If/Else Tracing code trace?

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