You can add the Section indicator to the _____ using a shortcut menu.
A. Ribbon
B. Quick Access Toolbar
C. status bar
D. none of the above
Answer: C
Computer Science & Information Technology
You might also like to view...
Bottom Align is the default vertical alignment
Indicate whether the statement is true or false
Computer Science & Information Technology
If the following code fragment is executed in an otherwise complete and correct program, which expression will be executed? Why?
``` x = 0; if (x = 12) yes_statement; else no_statement; ``` a) The no_statement will be executed because x is not 12. b) The statement has incorrect syntax so will not compile at all. c) x=12 is illegal in the Boolean expression of an if statement. d) The yes_statement will be executed.
Computer Science & Information Technology