What is the output


What is the output of the code shown below:
Dim intAdd As Integer
Dim intOuterLoop As Integer
Dim intInnerLoop As Integer

intAdd = 0
For intOuterLoop = 1 To 8
For intInnerLoop = 3 To 7
intAdd += 1
Next
Next
MsgBox.Show ("The final value is " & intAdd.ToString()) 

Request for Solution File

Ask an Expert for Answer!!
Programming Languages: What is the output
Reference No:- TGS0103792

Expected delivery within 24 Hours