To rotate an object counter-clockwise, you use a(n) ____ value for the angle of rotation.
A. positive
B. negative
C. specific
D. average
Answer: B
You might also like to view...
What does the following function do for a linked list with the first node as head?
public void fun1(Node head) { if(head == null) return; fun1(head.next); System.out.println(head.data); } a. Print all elements in reverse order. b. Print all elements in normal order. c. Prints all elements in random order. d. Prints the first element.
The outline of a selection is called the ____ of the selection.
A. alias B. foreground C. side D. edge
The ____________________ establishes an object by reserving enough memory space for it and possibly initializing member variables.
Fill in the blank(s) with the appropriate word(s).
The advantages of appending conditional modifiers to the end of script statements include ____.
A. It helps in the development of compact statements B. It can help reduce the overall size of script files C. It provides fine tuned control over the execution of individual statements D. All of the above