Multiple choice technology databases

What is the result of this: initcap("gadde");

  1. GADDE

  2. Gadde

  3. gADDE

  4. THERE IS NO FUNCTION LIKE initcap();

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

This is a duplicate of question 142268. The Oracle SQL function INITCAP() converts the first letter of each word to uppercase and all remaining letters to lowercase. When applied to 'gadde', it returns 'Gadde' with only the first letter capitalized.