If the ____ check box is checked on the Pen Tool’s options bar, clicking a path segment creates a new anchor automatically, and clicking an existing anchor point deletes it.

a. Auto Add/Delete
b. Adjustment Tools
c. Options
d. Anchor Point Management

a. Auto Add/Delete

Computer Science & Information Technology

You might also like to view...

Which of the following program segments is equivalent to the program segment given below?

``` If Pay >= 500 Then Set TaxRate = 0.3 End If If (Pay >= 300) AND (Pay < 500) Then Set TaxRate = 0.2 End If If (Pay >= 100) AND (Pay < 300) Then Set TaxRate = 0.1 End If ``` a. ```If Pay > 100 Then Set TaxRate = 0.1 Else If Pay > 300 Then Set TaxRate = 0.2 Else If Pay > 500 Then Set TaxRate = 0.3 End If End If``` b. ```If Pay >= 500 Then Set TaxRate = 0.3 Else If Pay >= 300 Set TaxRate = 0.2 Else If Pay >= 100 Then Set TaxRate = 0.1 End If End If End If``` c. ```If Pay >= 500 Then Set TaxRate = 0.3 Else Set TaxRate = 0.2 If Pay > 100 Then Set TaxRate = 0.1 End If End If``` d. none of the above are equivalent to the given example

Computer Science & Information Technology

Choose the example below of a descendent selector that configures the anchor tags with the nav element

a. nav a b..navigation a c. #nav a d. a nav

Computer Science & Information Technology