Which of the following is NOT a Lookup or Reference function?
A) VLOOKUP
B) INDEX
C) FIND
D) MATCH
C
Computer Science & Information Technology
You might also like to view...
The pop-up box displayed by the prompt() method can have an initial value in the text input box
Indicate whether the statement is true or false
Computer Science & Information Technology
Which statements successfully swap the contents of an array at index 3 and index 4?
a) values( 3 ) = values( 4 ) values( 4 ) = values( 3 ) b) values( 4 ) = values( 3 ) values( 3 ) = values( 4 ) c) Dim temp As Integer = values( 3 ) values( 3 ) = values( 4 ) values( 4 ) = temp; d) Dim temp As Integer = values( 3 ) values( 3 ) = values( 4 ) values( 4 ) = values( 3 ) A
Computer Science & Information Technology