This page provide you Data Base Management System MCQs SET-1 ,which is very useful of many exam like Semester, DRDO, ISRO, Railway, Banking , Gate Etc.
Q.1 When a primary key is defined in the table DBMS automatically creates a ----------on a primary key column?
When a primary key is defined, the DBMS automatically creates a unique index on that column to ensure data integrity and to speed up data retrieval operations.
Q.2 Which normal form is the particular dependency removed?
Second Normal Form (2NF) is specifically concerned with removing partial functional dependencies, ensuring that all non-key attributes are fully functional dependent on the primary key.
The conceptual view (or logical level) provides a complete description of the data stored in the database and the relationships between them for the entire community of users.
Aggregate functions perform a calculation on a set of values and return a single value. Count, Avg, and Max are aggregate functions, whereas 'Create' is a Data Definition Language (DDL) command.
Q.6 Under which category do the commands CREATE and ALTER belong to?
DDL stands for Data Definition Language. It includes commands like CREATE, ALTER, and DROP, which are used to define or modify the structure of database objects.
ACID is an acronym for Atomicity, Consistency, Isolation, and Durability. These are a set of properties that guarantee that database transactions are processed reliably.
A database table can have only one primary key. However, this primary key can consist of a single column or multiple columns (which is then called a composite key).
Q.9 Which of the following are the properties of entities?
In database modeling, attributes are the characteristics or properties that describe an entity (for example, 'Name' and 'Age' are attributes of a 'Student' entity).
Relational algebra is a procedural query language because it describes the steps or operations (like select, project, join) required to get the desired result from the database.
Q.11 The statement in SQL which allows to change definition of table is?
In Entity-Relationship (ER) diagrams, rectangles are used to represent entity sets, while ellipses represent attributes and diamonds represent relationships.
Q.14 The language used in application program to request data from DBMS is referred as:
DML (Data Manipulation Language) is the component of SQL used for accessing and manipulating data, such as retrieving (SELECT), inserting, or updating records.
Q.15 The number of attributes in a relation is called its---------
In the three-level architecture of a DBMS, the external level (or view level) is the one closest to the users as it describes only the part of the database relevant to a specific user.
Q.20 Which of the following is comparison operator in SQL?
SQL provides several comparison operators to filter data, including the equals sign (=), the LIKE operator for pattern matching, and the BETWEEN operator for range filtering.