The outline of a selection is called the ____ of the selection.
A. alias
B. foreground
C. side
D. edge
Answer: D
Computer Science & Information Technology
You might also like to view...
A customer wants a computer for performing a single-threaded task as quickly as possible. Which of thefollowing CPU characteristics is the MOST important?
A. Clock speed B. Hyperthreading C. Fan speed D. Number of cores
Computer Science & Information Technology
Which of the following functions can be invoked by an object of class D?
Consider the class inheritance. ``` class B { public: B(); B(int nn); void f(); void g(); private: int n; }; class D: private B { public: D(int nn, float dd); void h(); private: double d; }; ``` a) f() b) g() c) h()
Computer Science & Information Technology