How do you deselect a specific area when using the Quick Selection tool?

What will be an ideal response?


Hold down Alt/Opt and click the area to be deselected.

Computer Science & Information Technology

You might also like to view...

Fill in the code to complete the following method for computing factorial.

``` /** Return the factorial for a specified index */ public static long factorial(int n) { if (n == 0) // Base case return 1; else return _____________; // Recursive call } ``` a. n * (n - 1) b. n c. n * factorial(n - 1) d. factorial(n - 1) * n

Computer Science & Information Technology

The PowerPoint ________ view enables you to save an entire presentation to a SharePoint library

Fill in the blank(s) with correct word

Computer Science & Information Technology

In a business letter, the ________ uses the name and title from the inside address

Fill in the blank(s) with correct word

Computer Science & Information Technology

Router expansion cards that allow additional ports to be added, usually to connect ISPs or other high-speed connections, are called _______________.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology