While viewing a report in Print Preview, the Margins button is found in the ________ group

A) Page Layout B) Data C) Zoom D) Page Size

D

Computer Science & Information Technology

You might also like to view...

A tab stop can be moved ONLY by changing its setting in the Tabs dialog box

Indicate whether the statement is true or false

Computer Science & Information Technology

Show the output of the following code:

``` #include using namespace std; class A { public: int x; int y; int z; A(): x(1), y(2), z(3) { } }; int main() { A a; cout << a.x << " " << a.y << " " << a.z; return 0; } ``` a. 2 2 2 b. 3 3 3 c. 1 1 1 d. 1 2 3 e. 1 1 2

Computer Science & Information Technology