Solved

Choose the Statement Below That Performs the Comment Found on Line

Question 2

Multiple Choice

Choose the statement below that performs the comment found on line 2 of the following code segment.
Dim newStudentForm As New frmNewStudent()
'Initialize AcademicYear text box on NewStudent form to 1
NewStudentForm.ShowDialog()


A) frmNewStudent.txtAcademicYear.Text = "1"
B) txtAcademicYear.Text.newStudentForm = "1"
C) newStudentForm.txtAcademicYear.Text = "1"
D) txtAcademicYear.frmNewStudent = "1"

Correct Answer:

verifed

Verified

Related Questions