OCP CBT Question 598

Please solve the following question.

Consider the following sequence of commands executed by HR user.```sql CREATE TABLE hr.employees (id NUMBER, name VARCHAR2(100)); GRANT SELECT ON hr.employees TO user1 WITH GRANT OPTION; ```Now, USER1 executes:```sql GRANT SELECT ON hr.employees TO user2; ```Which statement describes the privileges of USER2?