When an object is selected, it is surrounded by ________, which allow you to change the size of the object
A) rotation handles
B) move pointers
C) dragging handles
D) sizing handles
D
You might also like to view...
How many bytes of memory are used in MS Visual C++ for the datatype float ?
A. 1 B. 4 C. 8 D. 2
Answer the following statements true (T) or false (F)
1. A local class and a nested class are the same thing. 2. If v is a vector and i is an int variable, then in the following the value of i can be any nonnegative int value: v[i] = i; 3. It is valid to initialize member variables in a class on the same line in which the variable is declared. For example, the following sets xx to 1000: ``` class A { public: A(){} private: int xx = 1000; }; ``` 4. If we use an out of range index with a vector, there be an error message from the compiler.
Many designers feel that a ____ font is preferable for files read electronically.
A. serif B. monospace C. sans-serif D. cursive
When you write a method that catches an Exception, rather than handling the Exception itself, it can pass the exception to the method that called your method. What is this known as?
A. rethrowing the Exception B. saving the Exception C. opening the Exception D. sideloading the Exception