Multiple choice technology programming languages

Which arithmetic operations can be performed on a column by using a SQL function that is built into Oracle database?

  1. addition

  2. subtraction

  3. raising to a power

  4. finding the quotient

  5. finding the lowest value

Reveal answer Fill a bubble to check yourself
A,C,E Correct answer
Explanation

Oracle SQL supports arithmetic functions like ADD (addition), POWER (raising to a power), and MIN/LEAST (finding lowest value). Subtraction and division operations are typically done with operators (- and /) rather than built-in functions.