The WITH GRANT OPTION clause in Oracle SQL allows the grantee to grant the privilege they have received to another user or role. E . It cannot be used to pass on privileges to PUBLIC by the grantee: The WITH GRANT OPTION does not allow the grantee to pass on privileges to PUBLIC. Only the object's owner or a user with the GRANT ANY OBJECT PRIVILEGE system privilege can grant privileges to PUBLIC. F . It can be used to pass on privileges to other users by the grantee: This is true. When a user receives privileges with the WITH GRANT OPTION, they can grant that privilege to another user or role. Reference: Oracle Database SQL Language Reference 12c, specifically sections on user privileges and the WITH GRANT OPTION.