The process of moving a slide object to a new location using the mouse pointer is called ____.
A. drop and drag
B. drag and drop
C. drag and drip
D. slide and drop
Answer: B
You might also like to view...
To view a Web page, the client runs a Web ____________________.
Fill in the blank(s) with the appropriate word(s).
Which of the following business continuity plans focus on the immediate and near-term alternative workplace and business processes?
A) Response plans B) Contingency plans C) Recovery plans D) Resumption plans
Suppose you enter 34.3 57.8 789, then press the ENTER key. Analyze the following code.
``` Scanner input = new Scanner(System.in); int v1 = input.nextInt(); int v2 = input.nextInt(); String line = input.nextLine(); ``` a. After the last statement is executed, v1 is 34. b. The program has a runtime error because 34.3 is not an integer. c. After the last statement is executed, line contains characters '7', '8', '9', '\n'. d. After the last statement is executed, line contains characters '7', '8', '9'.
The ________ operator verifies whether the value of a field or expression falls within a stated range of numeric values
A) Not B) Between...And C) In D) Not Between...And