Will has created a brochure for a piano recital and wants to make an interesting pattern of musical notes on the front cover. He decides to use the Blend tool. Will has created a blend using seven steps. When he switches to Outline mode to view his blend, he sees ____.
A. nine blend objects; the seven steps and the two original blend objects
B. the two original blend objects and a straight line between them
C. seven blend objects
D. nine blend objects, and a straight line stringing them together
Answer: B
You might also like to view...
Exception handling helps you create ________ programs.
a. high-performance b. logic-error-free c. fault-tolerant d. compilation-error-free
Consider integer array values, which contains 5 elements. Which statements successfully swap the contents of the array at index 3 and index 4?
a. values[3] = values[4]; values[4] = values[3]; b. values[4] = values[3]; values[3] = values[4]; c. int temp = values[3]; values[3] = values[4]; values[4] = temp; d. int temp = values[3]; values[3] = values[4]; values[4] = values[3];