The keyword used to create a database is . . . . . . . .
A. CREATE
B. SET
C. SETUP
D. LINK
Answer: Option A
Solution (By Examveda Team)
This question asks about the keyword you use to create a new database in MySQL.Think of a database like a big container for storing your information.
To create this container, you use a special word, a command.
Out of the options given:
Option A: CREATE is the correct answer.
CREATE is the keyword you use to tell MySQL you want to make a new database.
The other options are incorrect.
SET is used to change settings.
SETUP isn't a keyword in MySQL.
LINK is used to connect to other databases.
So, remember CREATE is the keyword for building your own databases in MySQL!
Join The Discussion