________ provide additional information and request user input.
A. Ribbons
B. Windows
C. Toolbars
D. Dialog boxes
Answer: D
You might also like to view...
In the following code that uses recursion to find the greatest common divisor of a number, what is the base case?
``` public static int gcd(int x, int y) { if (x % y == 0) return y; else return gcd(y, x % y); } ``` a. gcd(int x, int y) b. if (x % y == 0) return y; c. else return gcd(y, x % y); d. Cannot tell from this code
Virtual communications gateways that allow a computer to accept requests for information from other networks or computers are called ________
A) open ports B) e-mails C) a botnet D) logical ports
To reduce the size of a document on your screen, you can click and drag the ____________________ on the status bar.
Fill in the blank(s) with the appropriate word(s).
When a numeric field is added to a PivotTable, it is placed in the ________ area of the PivotTable field list
A) Report Filter B) Row Labels C) Column Labels D) Values