To put text on a curved path, like a circle, your best choice is to use Illustrator because InDesign is limited in this capacity.

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

False

Computer Science & Information Technology

You might also like to view...

What is the value of sum after execution of this code fragment?

``` sum = 0; for (int i = 0; i < 3; ++i) sum += m[i][2-i]; ``` a. 20 b. 30 c. 15 d 39

Computer Science & Information Technology

How many and what kind of variables (primitive or object) are created in the code below?

``` > String fileName = FileChooser.pickAFile(); // fileName is an object variable. > Picture p1 = new Picture(fileName); // p1 is an object variable. > p1.show(); ```

Computer Science & Information Technology