Match the following Excel Elements with their description or action:
I. Enter
II. Cancel
III. Status bar
IV. Zoom control
V. Formula bar
A. Reverts back to previous data
B. Shows the contents of the active cell
C. Displays information about a command or operation as it is being performed
D. Accepts the data
E. Allows you to see more or less on the screen at one time
D, A, C, E, B
You might also like to view...
Which of the following is false?
a. Each Activity in an app must be declared in AndroidManifest.xml; otherwise, Android will not know that the Activity- exists and will not be able to launch it. b. By default each Activity you create uses the "standard" launch mode. In this mode, when Android receives an Intent to launch the Activity, Android creates a new instance of that Activity c. With MainActivity’s launchMode set to "singleTop", when the user touches the up button Android brings the existing MainActivity to the foreground, rather than creating a new MainActivity object. d. Each of the above is true.
Which of the following statements is true?
a. Each object (instance) of the class shares the class’s instance variables. b. Most instance-variable declarations are preceded with the keyword public, which is an access modifier. c. Variables or methods declared with access modifier private are accessible only to methods of the class in which they’re declared. d. None of the above is true.