Question

4. Suppose you want to verify that the user has entered a value into a text box named txt Input. Which of the following code segments responds with an appropriate

message if the user does not enter a value? а. If txtInput.text <> "" Then lblStatus.Text = “No data has been entered" End If b.If txtInput.Text =" "Then lblStatus.Text = "No data has been entered" End If If txtInput <> String. Empty ThenC. lblStatus.Text = “No data has been entered" End If d.If txtInput.Text=String.Empty Then lblStatus.Text= “No data has been entered" End If

Question image 1Question image 2Question image 3Question image 4Question image 5Question image 6Question image 7Question image 8Question image 9Question image 10Question image 11Question image 12Question image 13