?The larger text placeholder on the title slide is designed to hold a subtitle.

Answer the following statement true (T) or false (F)


False

The larger text placeholder on the title slide is designed to hold the presentation title, and the smaller text placeholder is designed to contain a subtitle. Once you enter text into a text placeholder, it is no longer a placeholder and becomes an object called a text box. See 20-1: Creating a Presentation

Computer Science & Information Technology

You might also like to view...

When invoking a method with an object argument, ___________ is passed.

a. the contents of the object b. a copy of the object c. the reference of the object d. the object is copied, then the reference of the copied object

Computer Science & Information Technology

What does the following program do?

``` // What does this program do? #include using namespace std; void someFunction( int [], int, int ); // function prototype int main() { const int arraySize = 10; int a[ arraySize ] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; cout << "The values in the array are:" << endl; someFunction( a, 0, arraySize ); cout << endl; } // end main // What does this function do? void someFunction( int b[], int current, int size ) { if ( current < size ) { someFunction( b, current + 1, size ); cout << b[ current ] << " "; } // end if } // end function someFunction ```

Computer Science & Information Technology

You can think of an else clause as being a backup plan that is implemented when the condition returns a value of false.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

You should provide grounding for the user by placing navigation elements ____ on each page.

A. in different positions B. at the left C. at the top D. in the same position

Computer Science & Information Technology