?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
You might also like to view...
The ____ policy dictates how and in what timeframe spam is removed.
A. data access B. data loss C. data security D. data retention
What names are displayed in the list box when the button is clicked on?
``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim file As String = "Ships.txt" Dim ships() As String = FillArray(file) lstBox.Items.Add(ships(2)) lstBox.Items.Add(ships.Min) End Sub Function FillArray(file As String) As String() Dim names() As String = IO.File.ReadAllLines(file) Return names End Function ``` Assume the three lines of the file Ships.txt contain the following entries: Pinta, Nina, Santa Maria (A) Pinta and Nina (B) Santa Maria and Pinta (C) Nina and Santa Maria (D) Santa Maria and Nina