The box that appears when an object is selected is called the ____________________.

Fill in the blank(s) with the appropriate word(s).


selection rectangle

Computer Science & Information Technology

You might also like to view...

What are the names of the input arguments of apart?

``` void apart (float x, int& wholep, float& fracp) { wholep = int (x); fracp = x - wholep; return; } ```

Computer Science & Information Technology

Walking around the room prior to the presentation gives you a feel for how you might be able to move and ________ during the speech

A) adjust the sound B) use a laser pointer C) step over extension cords D) engage the audience

Computer Science & Information Technology

An abstract method ____.

A. is any method in the abstract class B. cannot be inherited C. has no body D. is found in a subclass and overrides methods in a superclass using the reserved word abstract

Computer Science & Information Technology

Suppose you have written a program that inputs data from a file. If the input file does not exist when the program executes, then you should choose which option?

A. Terminate the program. B. Include code in the program to recover from the exception. C. Log the error and continue. D. Include code in the header file.

Computer Science & Information Technology