Question

1. Which of the following code segments assigns the string “Great Year" to the Text property of a label named lblMessage when the value in the variable decSales is either

greater than 50,000 or equal to 50,000? a. If decSales > 50000 Then lblMessage.Text ="Great Year" End If b. If decSales >= 50000 Then lblMessage.Text ="Great Year" C. If decSales < 50000 Then lblMessage.Text ="Great Year" End If lblMessage.Text ="Great Year" End If d.If decSales <= 50000 Then End If

Fig: 1

Fig: 2

Fig: 3

Fig: 4

Fig: 5

Fig: 6

Fig: 7

Fig: 8

Fig: 9

Fig: 10

Fig: 11

Fig: 12

Fig: 13