Calc में =min(6, 10<6, 4) की क्या वैल्यू होगी?
What will be the name of =min(6, 10<6, 4) in Calc?
A)
B)
C)
D)
Explanation:
In LibreOffice Calc, the formula =MIN(6, 10<6, 4)
will be evaluated as follows:
- 10 < 6 is a logical comparison, which results in FALSE. In Calc, FALSE is treated as 0.
- So, the formula becomes
=MIN(6, 0, 4)
.
The MIN function returns the smallest value, which in this case is 0.
So, the correct answer is:
(D) 0 (Zero).