What is the difference between continuous tone art and line art?

What will be an ideal response?

Continuous tone artwork has a full range of tones, shading and blends. Pencils, chalk, markers, watercolors are some examples of continuous tone artwork. Line art is made up of solid lines or dots. Scratch board and pen and ink drawings are examples of line art.

Computer Science & Information Technology

You might also like to view...

You have written an essay for school, and it has to be at least five pages long. But your essay is only 4.5 pages long! You decide to use your new Python skills to make your essay longer by spacing out the letters. Write a function that takes a string and a number of spaces to insert between each letter, then print out the resulting string.

``` def spaceitout(astring, number): pile = "" space = " " for index in range(0,len(astring)-1): pile = pile+ astring[index]+number*space pile+=astring[len(astring)-1] print pile ```

Computer Science & Information Technology

A(n) ____ contains controls for viewing and changing the properties of objects such as vector and bitmap graphics.

A. cluster B. panel C. group D. inspector

Computer Science & Information Technology