Which THREE are valid primitive data types in most programming languages? (Choose three.)
Character is a primitive type.
Why this answer
Option B (Character) is correct because a character is a primitive data type that stores a single alphanumeric symbol, such as 'A' or '7', typically using 1 or 2 bytes depending on encoding (e.g., ASCII or Unicode). In most programming languages like Java, C, or Python, primitive types are the most basic data types provided by the language, not composed of other types.
Exam trap
Cisco often tests the misconception that String is a primitive type because it appears simple and is used frequently, but it is actually a reference type in nearly all modern languages.