Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

6. true or false that the statement: ItemTextBox.Focus(), will place the inserti

ID: 3637189 • Letter: 6

Question

6. true or false that the statement: ItemTextBox.Focus(), will place the insertion point in the text box called ItemTextBox.

7. In NameTextBox.Text, _______.
A. the property is NameTextBox
B. the property is Text
C. the object is Name
D. the object is Text

8. Assume that you are designing a form and it will be necessary for the user to type in his name. You should use a _____________ for inputting the user's name.
A. TextBox
B. Label
C. Button
D. CheckBox

9. Which of the following statements will clear the contents of a text box named MessageTextBox?
A. MessageTextBox.Text = ""
B. MessageTextBox.Clear()
C. MessageTextBox.Text = String.Empty
D. All of the answers are correct.

10. Which of the following is a valid example of concatenation?
A. MessageLabel.Text = MessageLabel.Text & " " & NameTextBox.Text
B. WeatherReportLabel.Text = Today's weather will be & WeatherTextBox.Text
C. CityAndStateLabel.Text = CityTextBox.Text AND StateTextBox.Text
D. "Good Morning," & NameTextBox.Text = GreetingLabel.Text

Explanation / Answer

7)C. the object is Name 8)D. CheckBox 9)B. MessageTextBox.Clear() 110)C. CityAndStateLabel.Text = CityTextBox.Text AND StateTextBox.Text