WHAT VALUES ARE RETURNED AFTER EXECUTING THE FOLLOWING STATEMENT

8. What values are returned after executing the following statement?SELECT JOB_ID, MAX_SALARY FROM JOBS GROUP BY MAX_SALARY;Assume that the JOBS table has ten records with the same JOB_ID value of DBA and the same MAX_SALARY value of 100. (Choose the best answer.) A. One row of output with the values DBA, 100 B. Ten rows of output with the values DBA, 100 C. An error is returned D. None of the above