Solved

Which of the Following Displays a Message Box Saying "I

Question 14

Multiple Choice

Which of the following displays a message box saying "I have been created" every time a new instance of the class ShowMe is created?


A) Public Class ShowMe
MessageBox.Show("I have been created")
End Class

B) Public Class
ShowMe Public Sub Constructor()
MessageBox.Show("I have been created")
End Sub
End Class

C) Public Class
ShowMe Public Sub Create()
MessageBox.Show("I have been created")
End Sub
End Class

D) Public Class
ShowMe Public Sub New()
MessageBox.Show("I have been created")
End Sub
End Class

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions