In A1:A5 input random numbers. To compare each of the item in that list with 1, the method we should use is selecting B1:B5 then type:
a. =IF(A1<1, "Smaller than 1", "Greater or equal to 1") Ctrl Enter
b. =IF(A1:A5<1, "Smaller than 1", "Greater or equal to 1") Ctrl Shift Enter
c. All of the others are usable
c. All of the others are usable
Computer Science & Information Technology
You might also like to view...
Which of the following is the official notification that the organization is no longer operating in an emergency or disaster mode?
A. Validation B. Activation C. Deactivation D. Resumption
Computer Science & Information Technology
Which of the following is the correct definition for a procedure that accepts a String array as an argument?
a. Private Sub ArrayParam(ByVal strStudents As String) b. Public Sub ArrayParam(ByVal strStudents()) c. Sub ArrayParam(ByVal strStudents() As String) d. Private Sub ArrayParam(ByRef strStudents As String)
Computer Science & Information Technology