Which tab would you use in order to insert a text box?

A) The Home tab B) The Text Box tab
C) The Page Layout tab D) The Insert tab


D

Computer Science & Information Technology

You might also like to view...

What’s the best kind of password?

What will be an ideal response?

Computer Science & Information Technology

Create a method that will create a pyramid shaped sound wave.

What will be an ideal response?

Computer Science & Information Technology

What is returned by the following code? Assume that getStockPrices is a method that returns a 2-by-31 array, with the first row containing the stock price at the beginning of the day and the last row containing the stock price at the end of the day, for each day of the month.

``` 1 private int[] mystery() 2 { 3 int[][] prices = new int[ 2 ][ 31 ]; 4 5 prices = getStockPrices(); 6 7 int[] result = new int[ 31 ]; 8 9 for ( int i = 0; i<= 30; i++ ) 10 { 11 result[ i ] = prices[ 0 ][ i ] - prices[ 1 ][ i ]; 12 13 } // end for 14 15 return result; 16 17 } // end method mystery ```

Computer Science & Information Technology

Which aspect ratio is used in widescreen monitors?

A. 4:3 B. 3:4 C. 10:16 D. 16:10

Computer Science & Information Technology