Which of the following is a valid SQL numeric function? MCQ with Answer and Explanation

Which of the following is a valid SQL numeric function?
A. All of the above
B. ROUND
C. FLOOR
D. CEILING
Answer: Option A
Solution (By JKSSB Mock Tests)
ROUND, CEILING, and FLOOR are common mathematical functions in SQL.

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 database concepts deals with grouping a set of SQL statements into a single logical unit of execution?
A. View definition
B. Indexing
C. Normalization
D. Transaction

Correct Answer: Option D


Explanation:
A Transaction is a sequence of one or more SQL operations treated as a single, indivisible unit of work that must either succeed completely or fail completely.

This question belongs to: Computer Database Management System (DBMS)
Question #2
What is the concept of referential integrity?
A. Ensuring that no null values exist
B. Ensuring that foreign key values match primary key values in the referenced table
C. Ensuring data is normalized
D. Ensuring that all primary keys are unique

Correct Answer: Option B


Explanation:
Referential integrity ensures that relationships between tables remain consistent, meaning foreign key values must have corresponding primary key values.

This question belongs to: Computer Database Management System (DBMS)
Question #3
RDBMS is based on which model?
A. Network model
B. Object-oriented model
C. Hierarchical model
D. Relational model

Correct Answer: Option D


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)