What is the primary difference between data and information? MCQ with Answer and Explanation

What is the primary difference between data and information?
A. There is no difference between data and information
B. Data is raw facts, while information is processed data
C. Data refers to hardware, information to software
D. Data is always structured, information is unstructured
Answer: Option B
Solution (By JKSSB Mock Tests)
Data consists of raw, unprocessed facts, whereas information is data that has been processed and given meaning for decision-making.

Discuss this Question (0)

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

Practice More Database Management System (DBMS) Questions

Question #1
Which of the following commands is a Data Manipulation Language (DML) statement?
A. COMMENT
B. RENAME
C. TRUNCATE
D. UPDATE

Correct Answer: Option D


Explanation:
UPDATE is a DML statement because it is used to modify existing data values within rows of a database table, rather than modifying the structural schema.

This question belongs to: Computer Database Management System (DBMS)
Question #2
Which operator allows you to specify a range of values to filter query results, including the specified start and end endpoints?
A. LIKE
B. IN
C. BETWEEN
D. WITHIN

Correct Answer: Option C


Explanation:
The BETWEEN operator selects values within a specific inclusive range. It is shorthand for a combination of greater-than-or-equal-to and less-than-or-equal-to conditions.

This question belongs to: Computer Database Management System (DBMS)
Question #3
Which SQL command is used to reverse or undo all modifications made during the current transaction that have not yet been committed?
A. ROLLBACK
B. SAVEPOINT
C. REVERT
D. UNDO

Correct Answer: Option A


Explanation:
The ROLLBACK command is a TCL statement used to undo transactions, restoring the database to its last committed or safe state.

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