You can select slide objects in order to delete them simultaneously by pressing the _____ key as you click each object.

A. SHIFT
B. CTRL
C. ALT
D. TAB


Answer: A

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1) Function float converts its argument to a floating-point value. 2) The exponentiation operator ** associates left to right. 3) Function call range( 1, 10 ) returns the sequence 1 to 10, inclusive. 4) Sentinel-controlled repetition uses a counter variable to control the number of times a set of instructions executes. 5) The symbol = tests for equality.

Computer Science & Information Technology

The JavaFX scene graph:

(a) Is used to plot XY graphs (b) Describes the layout of GUI components in a JavaFX application (c) Is an application that is used to lay out components in a JavaFX application (d) Is used with lambda expressions to define nameless functions

Computer Science & Information Technology

Here is a collection of if and if-else statements with semicolons in various places. Assume all variables have been declared and initialized. Which of these are correct and are likely to give the programmers intent? Which are correct but unlikely to give the programmer's intent? Give the error for the remaining.

a) ``` if ( a > b ); a = b; else b = a; ``` b) ``` if(a > b ) a = b; else; b = a; ``` c) ``` if(a > b ) a = b; else b = a; ``` d) ``` if(a > b) a = b else b = a; ``` e) ``` if( x !=0 ) a = a / x ```

Computer Science & Information Technology

The NTFS file system used by Windows Vista has many safeguards in place that help prevent file corruption

Indicate whether the statement is true or false

Computer Science & Information Technology