1 2 3
1 2 3
98 75 93 64What is the value of the variable Z after the following code exectues?
Private Sub Form_Load()
Dim X As Integer, Y as Integer, Z as Integer
Open "A:\grades.txt" For Input As #1
Input #1 X
Input #1 Y,Z
Close #1
End Sub
10 23,8,15 43,41,18 25,26 45,46 100,103 5What is the value of "numbers(5)" after the following code exectues?
Private Sub Form_Load()
Dim X as Integer, numbers(1 to 5) as Integer
Open "A:\data.txt" For Input As #1
For X = 1 to 5
Input #1, numbers(X)
Next X
Close #1
End Sub