Computer Science, asked by maaheersingh777, 7 months ago

Write the syntax of the following function.
(a) Quotient (b) Power (c) Max (d) Product.​

Answers

Answered by nanditap322
5

Answer:

The QUOTIENT function for these same numbers =QUOTIENT(5,2) returns 2, since QUOTIENT doesn't return a remainder. For other ways to divide numbers, see Multiply and divide numbers.

power- Given two numbers base and exponent, pow() function finds x raised to the power of y i.e. xy. Basically in C exponent value is calculated using the pow() function. Syntax: double pow(double x, double y)

max-The Excel MAX function returns the largest value from a supplied set of numeric values. The syntax of the function is: MAX( number1, [number2], ... ) where the number arguments are one or more numeric values (or arrays of numeric values), that you want to return the largest value of.

product- The PRODUCT function multiplies all the numbers given as arguments and returns the product. For example, if cells A1 and A2 contain numbers, you can use the formula =PRODUCT(A1, A2) to multiply those two numbers together.

Similar questions