In the following SQL statement, which one is a literal
SELECT 'Employee Name: '|| ename from emp where deptno=10;
A. 10
B. ename
C. Employee Name:
D. ||

The answer is C, but why not A?