Answer the following statement(s) true (T) or false (F)
1. The best tool is always the most efficient.
2. One common workflow is to draw objects in object drawing mode: position, align, and overlap them as desired; then convert them to shapes so they merge together.
3. You cannot change a rectangle's stroke and fill colors once you have drawn the rectangle.
4. The Align panel requires that objects be aligned to each other rather than to the stage.
5. Drawing ovals is very different from drawing rectangles.
1. FALSE
2. TRUE
3. FALSE
4. FALSE
5. FALSE
You might also like to view...
Explain why the best programmers do not always make the best software managers. You may find it helpful to base your answer on the list of management activities in Section 22.1.
What will be an ideal response?
Write new methods like Program 7 to clear red and green.
For each of these, which would be the most useful in actual practice?
How about combinations of these?
A __________ causes one command’s standard output to be used as the standard input to another command.
a. redirection parameter b. filter c. utility d. pipe
What is the problem with this code?
``` int .array[5]; >>Delete the dot for (int index = 1; index <=5; index++) array[index] = index /2; ```