Examine these statements:SQL>CREATE ROLE dev1 ;
Role created.
SQL>GRANT CREATE SESSION ,CREATE USER, CREATE TABLE TO dev1 ;
Grant succeeded .
SQL>CREATE USER john IDENTIFIED BY john;
User created .
SQL>GRANT CONNECT, dev1 TO john;
Grant succeeded .
SQL>REVOKE CREATE SESSION FROM dev1 ;
Rovoke succeeded .
Which two are true about the resut and effects of executing these commands?