The Table Properties dialog box option called ____ allows users to set amount of space in pixels between the cell contents and the inside edge of the cell.
A. Cell formatting
B. Cell spacing
C. Cell padding
D. Content alignment
Answer: C
Computer Science & Information Technology
You might also like to view...
What is one advantage ofexporting Access data to Excel?
What will be an ideal response?
Computer Science & Information Technology
If the following code fragment is executed in an otherwise complete and correct program, which expression will be executed? Why?
``` x = 0; if (x = 12) yes_statement; else no_statement; ``` a) The no_statement will be executed because x is not 12. b) The statement has incorrect syntax so will not compile at all. c) x=12 is illegal in the Boolean expression of an if statement. d) The yes_statement will be executed.
Computer Science & Information Technology