SQL is a: MCQ with Answer and Explanation

SQL is a:
A. Machine language
B. Assembly language
C. Declarative language
D. Procedural language
Answer: Option C
Solution (By JKSSB Mock Tests)
SQL is a declarative language where you specify what data you want, not how to get it.

Discuss this Question (0)

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

Practice More Database Management System (DBMS) Questions

Question #1
RDBMS is based on which model?
A. Object-oriented model
B. Hierarchical model
C. Relational model
D. Network model

Correct Answer: Option C


Explanation:
Relational Database Management System (RDBMS) is based on the relational model proposed by E.F. Codd.

This question belongs to: Computer Database Management System (DBMS)
Question #2
Which of the following best defines a Database?
A. A single file containing text
B. Software for creating spreadsheets
C. A collection of related data organized for easy access
D. Hardware used to store programs

Correct Answer: Option C


Explanation:
A database is an organized collection of related data stored electronically for efficient retrieval and management.

This question belongs to: Computer Database Management System (DBMS)
Question #3
What does the SQL command 'INSERT INTO' do?
A. Creates a table
B. Deletes rows
C. Adds a new row to a table
D. Updates existing rows

Correct Answer: Option C


Explanation:
INSERT INTO is used to insert new records (rows) into a table.

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