If StudentData.txt file looks like this: 101,70 132,75 153,80 If a sub called student looks like this: Sub Student() Dim StudentID As Integer Dim Score As Integer Dim TotalScore As Integer Dim Counter As Integer FileOpen(1, “StudentData.txt”, OpenMode.Input) Do Until EOF(1) Input(1, StudentID) Input(1, Score) TotalScore = TotalScore + Score Counter = Counter + 1 MsgBox (TotalScore) Loop FileClose(1) End Sub What will be the display if Sub Student executes?
There will be three messages 70, 70+75, 70+75+80 So, It displays 70, 145, 225

There will be three messages: 70, 145, 225

If StudentData.txt file looks like this: 101,70 132,75 153,80 If a sub called student looks like...