Multiple choice technology programming languages

Which of the following is not a wrapper class?

  1. String

  2. Integer

  3. Boolean

  4. Character

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Wrapper classes in Java wrap primitive types (like Integer for int, Boolean for boolean, Character for char) to allow primitives to be used in contexts requiring objects. String, however, is not a wrapper class - it's an immutable class that represents a sequence of characters, not a wrapper for a primitive type. Option A is correct.