Multiple choice technology databases

Identify the correct output select INITCAP('ORACLE BASICS') from dual;

  1. ORACLE BASICS

  2. Oracle Basics

  3. oracle basics

  4. oracleBasics

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

INITCAP converts each word to title case - first letter uppercase, remaining letters lowercase. For 'ORACLE BASICS', it produces 'Oracle Basics' with both words properly capitalized. This Oracle string function is commonly used for formatting names and headings.