If a lengthy table extends to another page, how can you make sure the columns on the next page are still identified by column headings?

What will be an ideal response?


Select the heading row that you want to repeat on the next page. Then click the TABLE TOOLS LAYOUT tab, if necessary, and select Repeat Header Rows.

Computer Science & Information Technology

You might also like to view...

VDEs for mobile devices are based on a(n) ___________  that a programmer manipulates to design the user interface for an app.?

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

Computer Science & Information Technology

Which of the following statements is correct with respect to the TeleType structure declaration?struct TeleType{  char name[30];  char phoneNum[15];  struct TeleType *nextaddr;};

A. It is not valid in C B. Can be used to create a linked list of TeleType structures C. May be valid depending on the compiler D. Generates a "self-referencing" compiler warning

Computer Science & Information Technology

What’s wrong with this code?

int[] = (1, 2, 3, 4, 5); a) The array size must be specified in the square brackets. b) The parentheses should be square brackets. c) The square brackets should be curly braces. d) The parentheses should be curly braces.

Computer Science & Information Technology

The Perl 5 keyword my indicates that the variable is only valid for ________ in which it is declared.

a) the program b) the line c) the if statement d) the block of code

Computer Science & Information Technology