DBMS MCQ Test

DBMS MCQ Test

Assessment

Quiz

Computers

University

Hard

Created by

SrinivasaRao SrinivasaRao

Used 10+ times

FREE Resource

Student preview

quiz-placeholder

134 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The syntax for selecting all the columns of the table is:

SELECT *.* from tablename

SELECT from tablename

SELECT * from tablename

SELECT ALL from tablename

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

SQL statement that will change the column values in a row.

SELECT

UPDATE

DELETE

INSERT

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the correct syntax for DELETE?

DELETE FROM <TABLEName> WHERE <Condition>;

DELETE <Recordname> FROM <TABLEName> WHERE <Condition>;

DELETE <TABLEName> WHERE <Condition>;

DELETE FROM <TABLEName> <Condition>;

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Table name: PLAYER


NAME(Text)


NUMBER(Number)

POINTS(Number)

Which statement should be executed to return the name and points of the player?

SELECT * FROM PLAYER;

SELECT NAME, POINTS FROM PLAYER;

SELECT NAME, POINTS FROM PLAYER WHERE PLAYER;

SELECT NAME AND POINTS FROM PLAYER;

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Table name: PLAYER


NAME(Text)


NUMBER(Number)


POINTS(Number)


Which statement will successfully append a record from the table?

INSERT INTO PLAYER VALUES(‘Chong’,’12’,’200’);

INSERT INTO PLAYER VALUES(Chong,12,200);

INSERT INTO PLAYER VALUES(“Chong”,’12’,’200’);

INSERT INTO PLAYER VALUES(‘Chong’,12,200);

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Table name: PLAYER


NAME(Text)


NUMBER(Number)


POINTS(Number)


Which statement will successfully edit record of Wayne to Wales from the table?

UPDATE PLAYER SET NAME=’Wayne’ WHERE NAME=’Wales';

UPDATE PLAYER SET NAME=’Wayne’;

UPDATE PLAYER SET NAME=’Wales’ WHERE NAME=’Wayne';

UPDATE PLAYER SET NAME=’Wales’;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Table name: PLAYER


NAME(Text)


NUMBER(Number)


POINTS(Number)


Which statement should be executed to return the records of the player scoring from 200 above?

SELECT * FROM PLAYER WHERE POINTS>=200;

SELECT * FROM PLAYER;

SELECT * FROM PLAYER WHERE NAME>=WAYNE;

SELECT * WHERE NAME>=200 FROM PLAYER;

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?