What will the following code display in the lblSum control? Dim intSum As Integer Dim intY As

Question:

What will the following code display in the lblSum control?
Dim intSum As Integer
Dim intY As Integer
Do While intY < 3
For intX As Integer = 1 To 4
intSum += intX
Next intX
intY += 1
Loop
lblSum.Text = intSum.ToString
a. 5
b. 8
c. 15
d. 30

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: