Consider the code: When will “checked” message be displayed?
If CheckBox1.CheckState = CheckState.Checked Then
MessageBox.Show("Checked")
Else
MessageBox.Show("Not Checked")
End If
Select one:
a. Never
b. When checkbox1 is ticked
c. All the time
d. When checkbox1 is not ticked
Please fix the following input errors: