Menu

(Solved) : 3 Examine Following Code Value Variable Y Dim X Y Integer X 100 Select Case X Case 0 Case Q37292039 . . .

3) Examine the following code. What will be the value of thevariable Y?

Dim X, Y As Integer

X=100

Select Case X

Case Is < 0

Case 0

Y = 10

Case 1 to 50

Y = 15

Case Is < 100

Y= 20

Case Else

Y = 25

End Select

Answer:

Expert Answer


Answer to 3) Examine the following code. What will be the value of the variable Y? Dim X, Y As Integer X=100 Select Case X Case Is…

OR