DBMS MCQ Sheet-1
DBMS MCQ Sheet-1
4. The process of organising data into tables and establishing relationships between
them is known as:
A Data mining
B Data modelling
C Data warehousing
D Database design
5. Which of the following SQL statements is used to insert a new record into a
table?
A SELECT
B UPDATE
C INSERT INTO
D DELETE
6. In the context of database security, what does the term 'authentication' refer to?
A Ensuring data is not corrupted
B Verifying user identity
C Encrypting data
D Backing up data
7. Which of the following is correct syntax to select all columns from a table named
"Customers"?
A SELECT * FROM Customers
B SELECT Customers
C SELECT all FROM Customers
D GET * FROM Customers
8. What does the following SQL query do? SELECT COUNT(*) FROM Orders;
A Counts the number of orders in the Orders table
B Updates the number of orders
C Deletes the Orders table
D Creates a new Orders table
17. Let R1 (a, b, c) and R2 (x, y, z) be two relations in which a is the foreign key of R1 that
refers to the primary key of R2 . Consider the following four options. (a)Insert into R 1
(b)Insert into R 2 (c)Delete from R 1 (d)Delete from R 2 Which of the following is correct
about the referential integrity constraint with respect to above?
A. Schema
B. Subschema
C. Virtual table
D. Index Table
21. In RDBMS, different classes of relations are created using __________ technique to
prevent modification anomalies.
A. Functional Dependencies
B. Data integrity
C. Referential integrity
D. Normal Forms
22. Which of the following is generally used for performing tasks like creating the
structure of the relations, deleting relations?
23. Which of the following provides the ability to query information from the database
and insert tuples into, delete tuples from, and modify tuples in the database?