Which two are character manipulation functions? (Choose two.)
-
TRIM
-
REPLACE
-
TRUNC
-
TO_DATE
-
MOD
-
CASE
A,B
Correct answer
Explanation
Character manipulation functions operate on string/text data. TRIM removes leading/trailing characters (typically whitespace). REPLACE substitutes occurrences of a substring. TRUNC is for numeric truncation. TO_DATE converts strings to dates. MOD performs arithmetic modulo. CASE is conditional expression logic, not string manipulation.