Which of the following formulas would be used to apply conditional formatting if the value in K10 is more than 5000?

A) =K10>= 5000
B) =K10<5000
C) =K10>5000
D) =K10<=5000

Answer: C

Computer Science & Information Technology

You might also like to view...

Can message confidentiality and message integrity protection be applied to the same message? Why or why not?

What will be an ideal response?

Computer Science & Information Technology

What output is produced by the following code fragment?

``` int limit = 100, num1 = 15, num2 = 40; if (limit <= limit) { if (num1 == num2) System.out.println("lemon"); System.out.println("lime"); } System.out.println("grape"); ```

Computer Science & Information Technology