You can use the ____ Tool to draw free-form curves.
a. Line
b. Slant
c. Curve
d. Pencil
d. Pencil
You might also like to view...
Compare how the if statement and the switch statement are alike (site 3 ways). Explain how they’re not alike (site 2 ways).
What will be an ideal response?
A cell that remains the same when it is copied or filled to other cells is a(n) ________
A) relative cell reference B) constant cell reference C) fixed cell reference D) absolute cell reference
Which of the following terms refers to the art of placing and arranging type?
A. Fontography B. Fontology C. Epistemology D. Typography
Analyze the following statement:
double sum = 0; for (double d = 0; d < 10;) { d += 0.1; sum += sum + d; } a. The program has a compile error because the adjustment is missing in the for loop. b. The program has a compile error because the control variable in the for loop cannot be of the double type. c. The program runs in an infinite loop because d < 10 would always be true. d. The program compiles and runs fine.