Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Public Class Form1

Private Sub Show_Click(sender As Object, e As EventArgs) Handles show.Click


Dim marks(19) As Integer
Dim i As Integer
marks(0) = 94
marks(1) = 89
marks(2) = 90
marks(3) = 81
marks(4) = 45
marks(5) = 56
marks(6) = 66
marks(7) = 72
marks(8) = 38
marks(9) = 43
marks(10) = 78
marks(11) = 50
marks(12) = 69
marks(13) = 86
marks(14) = 77
marks(15) = 57
marks(16) = 63
marks(17) = 58
marks(18) = 79
marks(19) = 93
For i = 0 To 19
If marks(i) >= 85 Then
MsgBox("shortlisted for interview " & marks(i))

End If

Next
For i = 0 To 19
If marks(i) >= 65 And marks(i) < 85 Then

MsgBox("shortlisted for interview II " & marks(i))

End If

Next
For i = 0 To 19
If marks(i) < 65 Then

MsgBox(" not shortlisted " & marks(i))

End If

Next
End Sub
End Class

You might also like