A ____ box is an outline box you create by dragging the pointer in Report Design View.

A. selection
B. design
C. pointer
D. drag

Answer: A

Computer Science & Information Technology

You might also like to view...

The area bound by the axes in a chart is called the ________

A) data area B) chart area C) plot area D) axes area

Computer Science & Information Technology

What is the output of the following program?

``` #include using namespace std; class TestClass { public: TestClass(int x) { cout << x << endl; } TestClass() { cout << "Hello!" << endl; } }; int main() { TestClass test(77); return 0; } ``` a. the program runs but there is no output. b. 77 c. Hello! d. the program will not compile

Computer Science & Information Technology