Which software utility serves as an interface between an application program and the physical database files? MCQ with Answer and Explanation

Which software utility serves as an interface between an application program and the physical database files?
A. Operating System
B. Linker
C. Compiler
D. Database Management System (DBMS)
Answer: Option D
Solution (By JKExamLibrary)
A Database Management System (DBMS) acts as an interface between application software and the underlying physical database, managing data storage, retrieval, and updates.

This question belongs to: Computer Database Management System (DBMS)

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Database Management System (DBMS) Questions

Question #1 Report Error
What is a candidate key in a relation?
A. A super key that is minimal
B. Any column that can be used as a primary key
C. A key that is not unique
D. A foreign key

Correct Answer: Option A


Explanation:
A candidate key is a minimal super key, meaning no subset of it can uniquely identify a row.

This question belongs to: Computer Database Management System (DBMS)
Question #2 Report Error
Which normal form requires that every determinant is a candidate key?
A. 3NF
B. 2NF
C. BCNF
D. 1NF

Correct Answer: Option C


Explanation:
Boyce-Codd Normal Form (BCNF) is a stricter version of 3NF where every determinant must be a candidate key.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
What is a foreign key in a database table?
A. A key used to uniquely identify records in the same table
B. A key that allows null values
C. A key that is always indexed
D. A column that references the primary key of another table

Correct Answer: Option D


Explanation:
A foreign key is a field in one table that links to the primary key of another table, establishing a relationship between tables.

This question belongs to: Computer Database Management System (DBMS)