To select an entire word, ____ it.
A. click
B. single-click
C. double-click
D. triple-click
Answer: C
You might also like to view...
Alice does not provide predefined array operations.
Answer the following statement true (T) or false (F)
In PHP, a while loop tests for the end of the file by using which function?
a. fputs() b. fopen() c. feof() d. fgets()
________ is a technique that involves breaking a program into logical segments and keeping only the currently needed segment in memory at any one time.
a) Caching b) Swapping c) Dynamic programming d) Creating overlays
Assuming that plainQuantity has a value of 5, after a mouse click on a button containing the following ActionScript, the values of plainQuantity, plain-Sum and plainTotal would be ________, ________ and ________, respectively.
``` On (Press) Set Variable: "plainQuantity" = plainQuantity + 1 Set Variable: "plainSum" = plainQuantity * 8.15 Set Variable: "plainTotal" = "$" & plainSum End On ``` (a) 5, 40.75, $40.75 (b) 6, 48.90, "$" & 48.90 (c) 6, 48.90, $48.90 (d) 6, 48.90, $plainSum