AP CSA Unit-Level MCQ

Primitive Expressions

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

For practice use only.

Primitive Expressions MCQ Practice

Primitive Expressions 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 - Primitive Expressions: track the final printed value.

int a = 18;
int b = 3;
int c = 5;
int d = 2;
System.out.print(a + b * c - d);