Given a SQLiteDatabase object named db and a constant named CREATE_CITIES_TABLE that contains a valid CREATE TABLE statement, what does the following code do? db.execSQL(CREATE_CITIES_TABLE);

Given a SQLiteDatabase object named db and a constant named CREATE_CITIES_TABLE that contains a valid CREATE TABLE statement, what does the following code do?
db.execSQL(CREATE_CITIES_TABLE);









a. inserts a row into the specified table
b. gets all rows from the specified table
c. creates the specified table
d. drops the specified table












Answer: C


Android

Learn More Multiple Choice Question :