OCP CBT Question 498

Please solve the following question.

You are querying the `EMPLOYEES` table. You want to display 'High Salary' for employees with a salary greater than 10000, 'Medium Salary' for salaries between 5000 and 10000 (inclusive), and 'Low Salary' for salaries less than 5000. Which SQL statement correctly achieves this using a `CASE` expression?

EMPLOYEES Table StructuresqlDESC EMPLOYEES;Name Null? Type----------------- -------- -------------EMPLOYEE_ID NOT NULL NUMBER(6)SALARY NUMBER(8,2)...