AP CSA Unit-Level MCQ

Primitive Expressions

Practice mode with 25 hard 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 25 original Java MCQs and immediate explanations.

Question 1 of 25

Answered 0 of 25

Choose one answer.

The club dashboard stores several primitive values. What is printed?

int a = 19;
int b = 4;
int c = 7;
int d = 3;
System.out.print(a + b * c - d);