You can change the magnification factor of an image using the _____ panel or the Zoom tool on the Tools panel.

A. Magnification
B. Display
C. Navigator
D. Description


Answer: C

Computer Science & Information Technology

You might also like to view...

Which of the following results from the nmap command would let an administrator know that they have an insecure service running on a Linux server?

A. 22/tcp    open    ssh B. 23/tcp    open    telnet C. 443/tcp    open    https D. 993/tcp    open    imaps

Computer Science & Information Technology

If you find your team stuck discussing the same issue over and over, when do you decide to move on to the next issue?

What will be an ideal response?

Computer Science & Information Technology

Which is the correct syntax for placing the string “boat” into an ArrayList name recVehicles in position 3 for the first time?

(a) recVehicles.set(3, “boat”); (b) recVehicles.set(“boat”, 3); (c) recVehicles.add(3, “boat”); (d) recVehicles.add(“boat”, 3);

Computer Science & Information Technology

What is the output of the following code?

``` void f() { cout << 1 << endl; } int main() { f(); return 0; } ``` A. nothing B. 1 C. 0 D. 0 1 E. 1 0

Computer Science & Information Technology