If you drag from the top ruler, a ____ guide is created.
A. vertical
B. horizontal
C. both a. and b.
D. neither a. nor b.
Answer: B
You might also like to view...
In a cout statement, which of the following will advance the output position to the beginning of the next line?
a. endl or \n b. end1 or /n c. \n or \t d. \t or \b e. \\ or \'
An implementation of the _________ interface configures the database connection and prepares query statements automatically.
a. ResultSet b. RowSet c. Both of the above d. Neither of the above
In Java, __________ must be declared before they can be used.
a. variables b. literals c. key words d. comments
Which function header line is used for the function named PassThis ?
```int Table[4][3]={3, 2, 8, 6, 7, 4, 1, 5, 8, 0, 9, 1};``` A. void PassThis(int[ ][3]) B. void PassThis(int tbl[4][3]) C. void PassThis(int tbl[4][ ]) D. void PassThis(int tbl[ ][3])