Which of the following is NOT a Java primitive type?
- A
boolean
- B
double
- C
int
- Dcheck_circle
String
Explanation
<code>String</code> is a class (reference type), not a primitive. AP CSA primitives: <code>int</code>, <code>double</code>, <code>boolean</code>.