Get free ebooK with 50 must do coding Question for Product Based Companies solved
Fill the details & get ebook over email
Thank You!
We have sent the Ebook on 50 Must Do Coding Questions for Product Based Companies Solved over your email. All the best!

DBMS Interview Questions

Last Updated on November 18, 2022 by Sumit Kumar

A database is an organized and systematic collection of data, which is stored electronically on a computer. We can add, update, delete or retrieve data from the database. A database consists of sets of tables or objects which contain records and fields. A row in the database represents a single entry and columns define the attributes which define a particular aspect or property of the table.

Problems with File System

  • Data redundancy and inconsistency.
  • Difficulty in accessing data
  • Data isolation
  • Integrity problem
  • Atomicity problem
  • Concurrent access anomalies

Advantages of DBMS

  1. Improved data sharing and integrity: Multiple users can simultaneously access the same data at any point of time.
  2. Reducing data inconsistency: Data inconsistency occurs when different versions of the same data occur in the database. DBMS helps to design the databases properly to reduce the data inconsistency.
  3. Reducing data redundancy: DBMS designs databases in such a way that duplicate data can’t be inserted in the database.
  4. Simple: DBMS gives a simple and logical view of the data. The operations like insertion, deletion and updation are easy to implement with the help of DBMS.
  5. Data abstraction: Developers use complex algorithms to increase the efficiency of the database. DBMS hides these complex algorithms and provides an abstract view of the database to the user.
  6. Increase end – user productivity: DBMS provides tools to convert the data into useful information, which helps the users to make quick and correct decisions.
  7. Increase security: DBMS provides tools like authentication and encryption to make data more reliable and secure.

As far as placements are concerned, companies need all-rounder candidates. Every software engineer should have basic knowledge of databases because no matter which technical position you are in, you may have to interact with the database. So, you will definitely require some DBMS knowledge or skills to get a placement. Studying DBMS interview questions can help you in clearing the technical rounds of the interview process.

DBMS Interview Questions – Top 20 MCQs

1. What is the full form of DDL?

  1. Data definition language
  2. Database definition language
  3. Database data language
  4. Data database language

Answer: DDL stands for Data definition language and is used to define the structure of the database.

2. Which of the following is not a command of DML?

  1. GRANT
  2. SELECT
  3. UPDATE
  4. INSERT

Answer: GRANT. GRANT is a data control command and is used to provide access to the database to an user.

3. Which of the following is not a command of DDL?

  1. CREATE
  2. SELECT
  3. ALTER
  4. DROP

Answer: SELECT. SELECT is a data manipulation command and is used to retrieve data from the database.

4. DROP command is used for?

  1. Deleting the entire database.
  2. Deleting a particular table from the database.
  3. Deleting all the rows of the table
  4. Deleting one or more rows from a table.

Answer. Deleting one or more rows from a table.

5. Which property of the DBMS is responsible to protect the data of a transaction during system failure?

  1. Atomicity
  2. Durability
  3. Isolation
  4. Consistency

Answer: Durability. The property of durability protects the data of a transaction during system failure.

6. Which normalization form is based on the transitive dependency?

  1. 1 NF
  2. 2 NF
  3. 3 NF
  4. BCNF

Answer: 3 BF. The 3NF is based on the transitive dependency.

7. Rows of a relation is known as?

  1. Degree
  2. Entity
  3. Tuple
  4. None

Answer: Tuple. Rows of a relation are known as tuple.

8. What is the highest level of data abstraction?

  1. Internal
  2. View
  3. Conceptual
  4. Logical

Answer: View. View is the highest level. It simplifies the view of the database by providing multiple views of the database.

  1. What is the lowest level of data abstraction?
  2. Internal
  3. View
  4. Conceptual
  5. Logical

Answer: Internal. Internal level defines how the data is actually stored, it defines data-structures to store data and access methods used by the database.

10. Rectangles in ER diagram represents?

  1. Tables
  2. Entry sets
  3. Attributes
  4. Tuples

Answer: Entry sets. The rectangles in the ER diagram are used to represent entity sets.

11. Which of the following allows you to uniquely identify a tuple?

  1. Schema
  2. Entry sets
  3. Attributes
  4. Super key

Answer: Super key. Super Key helps us to uniquely identify a tuple in a relation.

12. What is the full form of NFTS?

  1. New Tree File System
  2. New Technology File System
  3. New Table File System
  4. New Transaction File System

Answer: New Technology File System.

13. Which command is used to find the number of values in a column?

  1. ADD
  2. SUM
  3. COUNT
  4. PLUS

Answer: COUNT. COUNT command is used to find the number of values in a column.

14. Which statement is executed automatically by the system as a side effect of the modification of the database?

  1. Trigger
  2. Recovery
  3. Assertion
  4. Backup

Answer: Trigger. Trigger is a stored procedure in the database which is automatically executed whenever an event in the database occurs.

15. An index is clustered, if

  1. It is on a set of fields that form a candidate key.
  2. It is on a set of fields that include the primary key.
  3. The data records of the file are organized in the same order as the data entries of the index.
  4. The data records of the file are organized not in the same order as the data entries of the index.

Answer: The data records of the file are organized in the same order as the data entries of the index.

16. Primary can be ?

  1. NULL
  2. NOT NULL
  3. EMPTY
  4. Depends on the query

Answer: NOT NULL. Primary key cannot be NULL as it the key which is used to uniquely identify each row in a table.

17. Which Command is used to select some particular columns?

  1. PROJECTION
  2. SELECTION
  3. SHOW
  4. GET

Answer: PROJECTION. PROJECTION is used to select some particular columns.

18. What is the Maximum children of a B- tree of order N?

  1. N – 1
  2. N
  3. 2 * N
  4. N + 1

Answer: N. B- tree is a self balancing tree which can have a maximum of N children.

19. The number of tuples of a relation is known as?

  1. Cardinality
  2. Rows
  3. Degree
  4. Length

Answer: Cardinality. Cardinality is the number of tuples of a relation.

20. Which of the following database objects does not physically exist?

  1. View
  2. Base Index
  3. Table
  4. None of the above

Answer: View. View is just a concept and it does not exist physically.

We tried to discuss DBMS Interview Questions in this article. We hope this article gives you a better understanding of the type of DBMS Interview Questions. Prepbytes also provides a good collection of Foundation Courses that can help you enhance your coding skills. Want to make sure you ace the interview in one go? Join our Placement Program that will help you get prepared and land your dream job at MNCs. Mentors of Prepbytes are highly experienced and can provide you with basic, in-depth subject knowledge for better understanding.

Leave a Reply

Your email address will not be published. Required fields are marked *