Microsoft Visual Basics 1Variable Declarations a In two stat
Microsoft Visual Basics
1.Variable Declarations
a. In two statements, declare a variable named intBowlScore and then in the second statement assign it the value 195. (2 points)
b. In one statement, declare a variable named intBowlScore and assign it the value 195. (2 points)
Solution
a.
Dim intBowlScore As Integer
intBowlScore = 195
b.
Dim intBowlScore As Integer = 195
