The function that will display 6 as the output in the following formula C1*(C2 + B1) is the MOD function.
What is the MOD function?
The MOD function, also known as the modulo operator, is a mathematical operation that returns the remainder after dividing two numbers. The MOD function takes two arguments. It then returns the remainder when the dividend is divided by the divisor.
Given the values, the expression, C1*(C2 + B1) equals 36. If 36 is divided by 5, the remainder after division would be 6. So, the MOD function can display 6 as the output of the formula.
Complete Question:
Which function will display 6 as the output in the following formula?
C1*(C2 + B1)
where C1 is 6, C2 is 2, and B1 is 4