___________ are padded with space characters to match the specified length.
-
VARCHAR
-
VARCHAR2
-
CHAR
-
CHAR2
C
Correct answer
Explanation
CHAR is a fixed-length data type that pads values with space characters to match the declared length. VARCHAR and VARCHAR2 are variable-length and don't pad. CHAR2 doesn't exist in Oracle. This padding behavior is important for string comparison and storage considerations - 'abc' in CHAR(10) becomes 'abc ' (seven spaces added).