Several preset buttons are available in InDesign to help you to quickly add interactivity to your document. Where are they found?

A. Buttons panel
B. Buttons menu
C. Sample Buttons panel
D. Sample Button bar


Answer: C

Computer Science & Information Technology

You might also like to view...

A linked list class uses a Node class with successor reference next and field element to store values. A recursive method to print all list elements can be written as

A) static void printList(Node list) { if (list != null) { System.out.println(list.element); printList(list.next); } } B) static void printList(Node list) { while (list!= null) { System.out.println(list.element) printList(list.next); list = list.next; } } C) static void printList(Node list) { while (list.next != null) { printList(list.next); System.out.println(list.element) list ++; } } D) static void printList(Node list) { System.out.println(list.element): printList(list.next); }

Computer Science & Information Technology

Documents look more professional when limited to _____ basic fonts.

A. one or two B. three or four C. only one D. more than four

Computer Science & Information Technology

Create an XML document that marks up the nutrition facts for a package of Grandma Deitel’s Cookies. A package of Grandma Deitel’s Cookies has a serving size of 1 package and the following nutritional value per serving: 260 calories, 100 fat calories, 11 grams of fat, 2 grams of saturated fat, 5 milligrams of cholesterol, 210 milligrams of sodium, 36 grams of total carbohydrates, 2 grams of fiber, 15 grams of sugars and 5 grams of protein. Render the XML documents in Internet Explorer 5. [Hint: Your markup should contain elements describing the product name, serving size/amount, calories, sodium, cholesterol, proteins, etc. Mark up each nutrition fact/ingredient listed above. Use nested elements as necessary.]

What will be an ideal response?

Computer Science & Information Technology

Begin keying the memo heading at approximately 1.5".

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

Computer Science & Information Technology