A _________ is a line you add along an edge of a cell.
A. gridline
B. caption
C. border
D. clip
Fill in the blank(s) with the appropriate word(s).
border
Rationale: A border is a line you add along an edge of a cell. You can add borders to the left, top, right, or bottom of a cell or range. See 14-8: Formatting Cells and Ranges
You might also like to view...
Which of the following array declarations are legal?
a. int array[10]; b. int size; cin >> size; int array[size]; c. int array[]={0,0,0}; d. const int size=9; int array[size]; e. All of the above f. All but C a. int array[10]; b. int size; cin >> size; int array[size]; c. int array[]={0,0,0}; d. const int size=9; int array[size]; e. All of the above f. All but C g. All but B
You can use the ____ command on the Layers panel to move each object in a drawing onto an individual layer.
A. Release to Layers B. Import Layers C. Extract to Layers D. Exit to Layers
Find the error(s) in the following code, which should handle the event that occurs when the value in itemsJSpinner changes.
``` 1 itemsJSpinner.addChangeListener( 2 3 new ChangeListener() // anonymous inner class 4 { 5 // event handler called when value in itemsJSpinner is changed 6 public void valueChanged( ChangeEvent event ) 7 { 8 itemsJSpinnerValueChanged( event ); 9 } 10 11 } // end anonymous inner class 12 13 ); // end call to addChangeListener ```
When working with tiles, the user can ________
A) change the placement of the tile on the screen B) add more tiles C) delete existing tiles D) all of the above