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”
End If

c. If decSales < 50000 Then
lblMessage.Text = “Great Year”
End If

d. If decSales <= 50000 Then
lblMessage.Text = “Great Year”
End If


b. If decSales >= 50000 Then
lblMessage.Text = “Great Year”
End If

Computer Science & Information Technology

You might also like to view...

What are the ways to import other objects into Rhino?

What will be an ideal response?

Computer Science & Information Technology

What is a boot loader?

What will be an ideal response?

Computer Science & Information Technology

Two types of professional-looking lists can be created in OpenOffice Writer

Indicate whether the statement is true or false

Computer Science & Information Technology

VBA code typed in the VBA Editor is stored in a(n) ________

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology