?Which of the following should be done if a graphic jumps from one location to another as you drag it and if you cannot position it exactly where you want it to be?
A. ?Press and hold the Ctrl key as you drag the graphic.
B. ?Press and hold the Alt key as you drag the graphic.
C. ?Press the Tab key after selecting the graphic.
D. ?Press the Esc key after selecting the graphic.
Answer: B
You might also like to view...
What IDS component performs trend analysis and stores the IP address and information about the attacker?
a. Network sensors b. Report analysis c. Database and storage d. Response box
What is output by the following Java code segment? int temp = 200;
``` if (temp > 90) { System.out.println("This porridge is too hot."); } if (temp < 70) { System.out.println("This porridge is too cold."); } if (temp == 80) { System.out.println("This porridge is just right!"); } ``` a. This porridge is too hot. b. This porridge is too cold. c. This porridge is just right! d. None of the above.