What is data redundancy? MCQ with Answer and Explanation

What is data redundancy?
A. Processed information
B. Duplication of data in multiple places
C. Encrypted data
D. Absence of data
Answer: Option B
Solution (By JKExamLibrary)
Data redundancy refers to unnecessary duplication of data, which DBMS helps control.

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 constraint ensures that every value in a specific column is unique across all rows in that table, but still permits a NULL value?
A. UNIQUE
B. CHECK
C. FOREIGN KEY
D. PRIMARY KEY

Correct Answer: Option A


Explanation:
The UNIQUE constraint prevents duplicate entries in a column. Unlike a Primary Key, a UNIQUE constraint typically allows one or more rows to store NULL values depending on the database engine.

This question belongs to: Computer Database Management System (DBMS)
Question #2 Report Error
Which of the following is an example of a NoSQL database?
A. Oracle
B. MySQL
C. PostgreSQL
D. MongoDB

Correct Answer: Option D


Explanation:
MongoDB is a document-oriented NoSQL database. PostgreSQL, MySQL, and Oracle are RDBMS.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
What is the result of the SQL query: SELECT * FROM employees;?
A. An empty result
B. All rows and all columns from the employees table
C. Only the primary key column
D. Only the first row

Correct Answer: Option B


Explanation:
SELECT * retrieves all columns and rows from the specified table.

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