DBMS Quizz

DBMS Quizz

University

24 Qs

quiz-placeholder

Similar activities

DBMS_LAB_06_12_22_Batch 1 2

DBMS_LAB_06_12_22_Batch 1 2

University

20 Qs

DBMS QUIZ-1

DBMS QUIZ-1

University

20 Qs

sql lab

sql lab

University

20 Qs

DBA CA 2

DBA CA 2

University

20 Qs

SQL

SQL

University

20 Qs

DBMS TCS503 DDL -2

DBMS TCS503 DDL -2

University

21 Qs

AACS3013 Quick Revision C1-C3

AACS3013 Quick Revision C1-C3

University

20 Qs

SQL Basics

SQL Basics

University

20 Qs

DBMS Quizz

DBMS Quizz

Assessment

Quiz

Computers

University

Hard

Created by

Khalil Marwat

Used 6+ times

FREE Resource

24 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which command is used to remove a relation from an SQL?

Drop table

Delete

Purge

Remove

Answer explanation

Explanation: Delete command is used to delete the existing record from the table. The drop table deletes the whole structure of the relation. Purge removes the table which cannot be obtained again.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a DDL command?

TRUNCATE

ALTER

CREATE

UPDATE

Answer explanation

DDL commands are used to define the structure of the database, table, schemas, etc. It enables us to perform the operations like CREATE, DROP, ALTER, RENAME, and TRUNCATE schema objects.

An UPDATE command is used for managing the data stored in a database. It is an example of a DML command that also includes the INSERT and DELETE commands.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following are TCL commands?

COMMIT and ROLLBACK

UPDATE and TRUNCATE

SELECT and INSERT

GRANT and REVOKE

Answer explanation

TCL stands for Transaction Control Commands used for managing the changes made by DML commands like INSERT, DELETE, and UPDATE. The TCL commands are automatically committed in the database; that's why we cannot use them directly while creating tables or dropping them.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement is used to delete all rows in a table without having the action logged?

DELETE

REMOVE

DROP

TRUNCATE

Answer explanation

TRUNCATE statement removes all rows in a table without logging the individual row deletions. It uses fewer system and transaction log resources, which makes its execution fast. This statement is similar to the DELETE statement without the WHERE clause.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

SQL Views are also known as

Simple tables

Virtual tables

Complex tables

Actual Tables

Answer explanation

A view is also known as a virtual table because it contains rows and columns similar to a real table. It shows the table interface but cannot be stored in a database.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many Primary keys can have in a table?

Only 1

Only 2

Depends on no of Columns

Depends on DBA

Answer explanation

The primary key can consist of a single or combination of the field that uniquely identifies each record in a table. It cannot be null or empty. A table may have duplicate columns, but it can contain only one primary key.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In which of the following cases a DML statement is not executed?

When existing rows are modified.

When a table is deleted.

When some rows are deleted.

All of the above

Answer explanation

The DML statement is used to access and manipulate the data in an existing table. Therefore, it cannot be used in table deletion.

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?