Which cells are included in the sum calculated by the function =SUM(D5:G5)?
A) E5, F5, and G5
B) E5 and F5
C) D5, E5, F5, and G5
D) D5, E5, and F5
Answer: C
You might also like to view...
If the base class contains only abstract method declarations, the base class is used for:
a) implementation inheritance. b) interface inheritance. c) Both. d) Neither.
What is wrong with the following pseudocode that displays a menu and repeatedly displays the menu until the user enters a valid selection?
``` Do Select menuSelection Case 1: Do task 1 Case 2: Do task 2 Case 3: Do task 3 End Select While menuSelection < 1 OR menuSelection > 3 ``` a. There are no output statements in the cases. b. A While loop should be used, not a Do-While loop. c. The last line should be: While menuSelection != 0 d. There is nothing wrong with this pseudocode.