Question

2. Suppose you want to determine whether a variable, decPayAmount, is between 1200 and 1400, inclusively.If it is, you want to set lblMessage text to “Pay amount is in the

range". Which of the following code segments will accomplish this? a. If decPayAmount <= 1200 And decPayAmount>= 1400 Then lblMessage.Text"Pay amount is in the range" End If b.If decPayAmount <=1200 Or decPayAmount >= 1400 Then lblMessage.Text"Pay amount is in the range" End If C. If decPayAmount >=1200 And decPayAmount <=1400 then lblMessage.Text = "Pay amount is in the range" End If d.If decPayAmount > 1200 Or decPayAmount < 1400 Then .Text="Pay amount is in the range" 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