____ mode is a hard-edged, fixed-sized square with no options for changing the opacity or flow.

a. Pen
b. Eraser
c. Brush
d. Block


d. Block

Computer Science & Information Technology

You might also like to view...

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

1. The indexed variables (members) of an array must be integers. 2. The locations of the various indexed variables in an array can be spread out all over the memory. 3. The following array declaration is legal double scores[]={0.1,0.2,0.3}; 4. Arrays can be passed to functions. 5. Arrays can be returned from a function.

Computer Science & Information Technology

For a non-empty linked list, select the code that should appear in a function that adds a node to the end of the list. newPtr is a pointer to the new node to be added and lastPtr is a pointer to the current last node. Each node contains a pointer nextPtr.

a. lastPtr->nextPtr = newPtr; lastPtr = newPtr b. lastPtr = newPtr; lastPtr->nextPtr = newPtr c. newPtr->nextPtr = lastPtr; lastPtr = newPtr d. lastPtr = newPtr; newPtr->nextPtr = lastPtr

Computer Science & Information Technology

A level is a position within a structure, such as an outline, that indicates the magnitude of importance.

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

Computer Science & Information Technology

Which of the following is a Character Spacing option?

A) Tight B) More Spacing C) Very Loose D) Expanded

Computer Science & Information Technology