Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output?SELECT LOWER(LASTNAME||'with a salary of'||SALARY) as Record, LENGTH(LASTNAME) as LnameFROM EMPLOYEESWHERE MANAGER_ID IS NULLOR SALARY IS NULL;
king with a salary of 24000 4hunold with a salary of 2400 6
kingwith a salary of 24000 4hunoldwith a salary of 2400 6Correct
KINGWITH A SALARY OF 24000 4HUNOLDWITH A SALARY OF 2400 6
KING WITH A SALARY OF 24000 4HUNOLD WITH A SALARY OF 2400 6