Answer:
The correct option for the following question is option(b) i.e CREATE DATABASE game_data;
Explanation:
The CREATE command is used to create the database in MySQL .The syntax for creating a database is given as
Create database database name ;
Here database name is game_data
So the query is CREATE DATABASE game_data;
Insert command is used for inserting the value into database not for creating the database .so option(a) is wrong .
MAKE and NEW are not any command so these both the option are wrong.
Therefore the correct answer is option(b);