OCP CBT Question 504

Please solve the following question.

Examine the SQL statement to determine the employee's `JOB_GRADE` based on their `SALARY`:

EMPLOYEES Table StructuresqlDESC EMPLOYEES;Name Null? Type----------------- -------- -------------EMPLOYEE_ID NOT NULL NUMBER(6)SALARY NUMBER(8,2)...Desired Logic: - If salary is less than 5000, JOB_GRADE is 'A' - If salary is between 5000 and 10000, JOB_GRADE is 'B' - If salary is greater than 10000, JOB_GRADE is 'C'