What does the letter 'D' stand for in the widely accepted ACID properties of database transactions? MCQ with Answer and Explanation

What does the letter 'D' stand for in the widely accepted ACID properties of database transactions?
A. Data
B. Dependency
C. Durability
D. Definition
Answer: Option C
Solution (By JKExamLibrary)
ACID stands for Atomicity, Consistency, Isolation, and Durability. Durability ensures that once a transaction commits, its changes survive system failures.

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
Which SQL statement is used to delete all rows from a table without logging individual row deletions?
A. DELETE FROM table_name;
B. TRUNCATE TABLE table_name;
C. REMOVE FROM table_name;
D. DROP TABLE table_name;

Correct Answer: Option B


Explanation:
TRUNCATE TABLE removes all rows and is a DDL operation with minimal logging, often faster than DELETE without WHERE.

This question belongs to: Computer Database Management System (DBMS)
Question #2 Report Error
Which type of subquery executes once for each row evaluated by the outer query, depending on values provided by the outer statement?
A. Scalar Subquery
B. Independent Subquery
C. Static Subquery
D. Correlated Subquery

Correct Answer: Option D


Explanation:
A Correlated Subquery is an inner query that references columns from the outer query, meaning it must be executed repeatedly for each row evaluated by the outer query.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
What is the role of the 'WHERE' clause in an UPDATE statement?
A. To sort the results
B. To specify which rows to update
C. To join tables
D. To specify the new values

Correct Answer: Option B


Explanation:
The WHERE clause in UPDATE identifies the rows that will be updated. Without it, all rows would be updated.

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