Which of the following is NOT a source button in the Import & Link group on the External Data tab?
A. Excel
B. Table
C. Access
D. Text File
Answer: B
You might also like to view...
Which of the following for-loop headers results in equivalent numbers of iterations:
A. for (int q = 1; q <= 100; q++) B. for (int q = 100; q >= 0; q--) C. for (int q = 99; q > 0; q -= 9) D. for (int q = 990; q > 0; q -= 90) a. A and B. b. C and D. c. A and B have equivalent iterations and C and D have equivalent iterations. d. None of the loops have equivalent iterations.
When working with the text-shadow style, the blur parameter defines the amount of space the shadow text is stretched.
Answer the following statement true (T) or false (F)
The term ____ means "many forms."
A. inheritance B. polymorphism C. UML D. virtual
Which of the following statements about pointer variables is false?
A. To access a variable through a pointer, we use the indirection operator (*). B. Only one pointer can be pointing to a variable at a time. C. The indirection and address operators are the inverse of each other. D. To declare and define a pointer variable, we suffix its type with an asterisk. E. To change a pointer variable so that it is pointing to nothing, we assign it the value NULL.