Multiple choice

Which of the following statements will create a new user?

  1. CREATE USER kumar

  2. CREATE OR REPLACE USER kumar

  3. CREATE USER kumar IDENTIFIED BY indian

  4. CREATE NEW USER kumar IDENTIFIED BY indian

  5. CREATE OR REPLACE USER kumar IDENTIFIED BY indian

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Yes, this is the correct syntax. Here, kumar is the username and indian is the password.