What does initcap('oracle') return?
C
Correct answer
Explanation
INITCAP converts a string to initial capitalization - first letter of each word uppercase, remaining letters lowercase. For 'oracle', it returns 'Oracle'. For 'hello world', it would return 'Hello World'. The function capitalizes the first character and lowercases the rest.