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

Ch.01 (1 pt each) 1. it true of false that in Form1.Text, the word Text is refer

ID: 3637188 • Letter: C

Question

Ch.01 (1 pt each)
1. it true of false that in Form1.Text, the word Text is referring to a method?

2. In Visual Basic, we work with objects that have _______.
A. Programmer preference
B. Projects, solutions, and procedures
C. Classes, actions, and disciplines
D. Properties, methods, and events

3. Which of the following shows the correct order for creating a Visual Basic program?
A. Set the properties, create the interface, write the code
B. Create the interface, set the properties, write the code
C. Create the interface, write the code, set the properties
D. Write the code, set the properties, create the interface

4. What is the code used to display the words "Visual Basic" in a label named TitleLabel?
A. TitleLabel.Name = "Visual Basic"
B. TitleLabel.Name.Visual Basic
C. TitleLabel.Text = "Visual Basic"
D. "Visual Basic" = TitleLabel.Text

5. When you break VB's rules for punctuation, format, or spelling, you generate a(n) _______.
A. run-time error
B. logic error
C. syntax error
D. arithmetic error

Explanation / Answer

1.False 2.D. Properties, methods, and events 3.B. Create the interface, set the properties, write the code 4.C. TitleLabel.Text = "Visual Basic" 5.C. syntax error