The default orientation for printing a report many be changed using the ____ feature of Access.

A. Form Layout
B. Report Wizard
C. Pagination
D. Print Preview


Answer: D

Computer Science & Information Technology

You might also like to view...

Consider the classes below:

public class TestA { public static void main(String args[]) { int x = 2; int y = 20 int counter = 0; for (int j = y % x; j < 100; j += (y / x)) counter++; } } public class TestB { public static void main(String args[]) { int counter = 0; for (int j = 10; j > 0; --j) ++counter; } } Which of the following statements is true? a. The value of counter will be different at the end of each for loop for each class. b. The value of j will be the same for each loop for all iterations c. Both (a) and (b) are true. d. Neither (a) nor (b) is true.

Computer Science & Information Technology

Which editing tool would you use to enlarge an area of an image?

A) Crop B) Sharpen C) Magnify D) Zoom

Computer Science & Information Technology

What type of socket ensures that even force is applied to the processor when it is being installed in the socket?

A. ZIF B. FM2 C. LGA D. AM3

Computer Science & Information Technology

int recFunc(int num){  if (num >= 10)     return 10;  else     return num * recFunc(num + 1);} Consider the accompanying definition of a recursive function. What is the output of the following statement?cout << recFunc(8) << endl;

A. 4 B. 8 C. 72 D. 720

Computer Science & Information Technology