Functions can be selected by using the ________.
A. Add Function dialog box
B. Format Function dialog box
C. Insert Function dialog box
D. Create Function dialog box
Answer: C
You might also like to view...
The results of a formula or a function are displayed in a(n) ________
Fill in the blank(s) with correct word
A message's ____ advises the recipient on how to treat the contents of the message.
A. Sensitivity level B. Internet Service Provider C. Personal Folders File D. Information Wizard
Which of the following statements about initializing an array is false?
A. Initializer values are stored in braces. B. Initializer values must be separated by commas. C. Data can be stored in a variable-length array when it is defined. D. It is a compiler error to specify more values than there are elements in the array. E. If the number of values provided is fewer than the number of elements, the unassigned elements are filled with zeros.
What will be displayed when the following code is executed?
int number = 6; while (number > 0) { number -= 3; System.out.print(number + " "); } a. 6 3 0 b. 6 3 c. 3 0 d. 3 0 -3 e. 0 -3