When selecting and sizing shapes, keep in mind that your audience will focus on the ____________________ shapes first.

Fill in the blank(s) with the appropriate word(s).


largest

Computer Science & Information Technology

You might also like to view...

Which of the following would completely remove all the nodes in a linked list and return them to the freestore?

void free(NodePtr head) { //what goes here? } a. if(head == NULL) return; else { free(head->link); delete head; } b. NodePtr here, prev; while(head->link != NULL) { here=head; prev= head; while(here->link != NULL) { prev=here; here=here->link; } delete here; prev->link=NULL; } delete head; c. NodePtr here, prev; while(head != NULL) { here=head; while(here->link != NULL) { prev=here; here=here->link; } delete here; prev->link=NULL; } delete head; d. NodePtr here, prev; while(head->link != NULL) { here=head; prev= head; while(here->link != NULL) { prev=here; here=here->link; } delete here; prev->link=NULL; } delete head; e. all of the above f. A and B g. B and C

Computer Science & Information Technology

Which of the following values is useful for providing instructions to users so they are not left wondering what they should type or select?

A. default B. instructional C. placeholder D. caption

Computer Science & Information Technology

The Header & Footer button is located in the:

A) Comments group on the DESIGN tab. B) Comments group on the INSERT tab. C) Text group on the DESIGN tab. D) Text group on the INSERT tab.

Computer Science & Information Technology

Which view or tool allows the form designer the most control and precision when designing a form?

A. Design view B. Layout view C. Form Wizard D. Split Form Tool

Computer Science & Information Technology