EX Case 6-1Natalie works for an environmental agency and is gathering data on recycling rates for an upcoming conference. In her spreadsheet, she wants to insert several pictures to illustrate her data. To align, group, or rotate the picture, Natalie would select the image, click the Picture Tools Format tab, then click one of those options in the ____ group.
A. Adjust
B. Picture Styles
C. Arrange
D. Size
Answer: C
You might also like to view...
When only the contents of a variable are passed, the receiving procedure is given access to the variable in memory.
Answer the following statement true (T) or false (F)
What is the output of the following code:
``` public class Test { public static void main(String[] args) { String s1 = new String("Java"); String s2 = new String("Java"); System.out.print((s1 == s2) + " " + (s1.equals(s2))); } }``` a. false false b. true true c. false true d. true false
Suppose A is an abstract class, B is a concrete subclass of A, and both A and B have a no-arg constructor. Which of the following is correct?
a. A a = new A(); b. A a = new B(); c. B b = new A(); d. B b = new B();
Which of the following is not an attribute of the TABLE element?
(a) WIDTH (b) BORDER (c) CAPTION (d) ALIGN