The Header and Footer buttons are located on the ________ tab

A) Home
B) Insert
C) Review
D) View

B

Computer Science & Information Technology

You might also like to view...

The ________ is an area of the Normal view window to type information regarding the active slide that you want to mention during the presentation

Fill in the blank(s) with correct word

Computer Science & Information Technology

Describe the flaw in the following function.

``` /* * Forms the plural of noun by adding an 's'. */ char * add_s(const char *noun) { char result[100]; strcpy(result, noun); strcat(result, "s"); return (result); } /code}

Computer Science & Information Technology