Que: What will be assigned to the dblAvg variable after the code has been executed?Dim intNums() As Integer = {10, 5, 7, 2}. The intTotal, intSub, and dblAvg variables contain the number 0 before the loops are processed.

Do While intSub < 4
intNums(intSub) = intTotal + intTotal
intSub = intSub + 1
Loop
dblAvg = intTotal / intSub
a. 0
b. 5
c. 6
d. 8
Answer: 0

Leave a Comment