FIGURE 11-1
In Figure 11-1 above, we say that AAA ____ Object.
A. aliases
B. extends
C. aggregates
D. overrides
Answer: B
You might also like to view...
A label’s ____________________ lists all the settings you can select or enter to modify the appearance and behavior of the label.
Fill in the blank(s) with the appropriate word(s).
Analyze the following recursive method.
``` public static long factorial(int n) { return n * factorial(n - 1); }``` a. Invoking factorial(0) returns 0. b. Invoking factorial(1) returns 1. c. Invoking factorial(2) returns 2. d. Invoking factorial(3) returns 6. e. The method runs infinitely and causes a StackOverflowError.
To edit an instance, you can use any of the following EXCEPT ____.
A. the Transform panel B. options for the Free Transform Tool C. the Properties panel D. the Instance panel
To change a color scheme, the entire theme must be changed
Indicate whether the statement is true or false