According to designers Alice Drueding and Joe Scorsone, how do you begin to design a poster?
What will be an ideal response?
Students' answers may vary but should be similar to Drueding and Scorsone's advice: "To communicate effectively, a designer begins by developing a concept that will drive the image-making process. The design concept is a communication strategy that keeps the designer focused while exploring visual options."
You might also like to view...
Analyze the following code:
``` public class Test { public static void main (String args[]) { int i = 0; for (i = 0; i < 10; i++); System.out.println(i + 4); } } ``` a. The program has a compile error because of the semicolon (;) on the for loop line. b. The program compiles despite the semicolon (;) on the for loop line, and displays 4. c. The program compiles despite the semicolon (;) on the for loop line, and displays 14. d. The for loop in this program is same as for (i = 0; i < 10; i++) { }; System.out.println(i + 4);
Name one of the four things Krug recommends doing to make text more scannable.
What will be an ideal response?