Which of the following functions will return the value of
10?
Sum (10.499,0
=Average(10.499.0)
=ROUND (10.4999,0)
None of the above
Answers
Answered by
0
Answer:
1
Explanation:
Answered by
0
Answer:
Which of the following functions will return the value of 10?
The correct answer is =ROUND (10.4999,0).
=ROUND(114.7261, 3) : 114.726
=ROUND(114.7261, 2) : 114.73
=ROUND(114.7261, 1) : 114.7
=ROUND(114.7261, 0) : 115
=ROUND(114.7261, -1) : 110
=ROUND(114.7261, -2) : 100
=ROUND(114.7261, -3) : 0
=SUM(B1:B6) → Sum a range of cells
=SUM(A:A) → Sum an entire column
=SUM(A1, A3, A5) → Sum non-contiguous cells
=AVERAGE(A1:A5)
Similar questions