Computer Science, asked by Thebookworm, 1 year ago

Predict the output of the following Visual Basic code-
x=0
For I= 0 to 5
x=x+7
Print x
Next I

Answers

Answered by bittersweet
1
The output would be:

7
14
28
34

Similar questions