Excel automatically adjusts the height and width of selected cells when you use the _____ command located in the HOME tab's Format button.
A. AutoFormat
B. AutoAdjust
C. AutoFit
D. Auto
Answer: C
You might also like to view...
Which of the following statements best describes the flow of control in the main method of a Java program that has no conditionals or loops?
a) Program statements are all executed at the same time. b) Program statements are executed according to their priority, which is specified by the programmer. c) Program statements are executed linearly, with earlier statements being executed first. d) Program statements are executed linearly, with later statements being executed first. e) Some program statements are executed at the same time, and others are executed in a linear manner.
Which of the following best describes this code snippet?
``` if (count != 400) System.out.println("Hello World!"); ``` a) If the variable count is exactly equal to 400, "Hello World" will be printed. b) If the variable count is not equal to 400, "Hello World" will be printed. c) If the variable count is close to, but not greater than, 400, "Hello World" will be printed. d) If the variable count is exactly equal to 399 or 401, "Hello World" will be printed. e) This code will not compile.