Multiple Choice
What value is assigned to lblSum.Text by the following code ?
Dim intTotal As Integer = 0
For intOuter = 1 To 3
For intInner = intOuter To 3
IntTotal += intOuter * intInner
Next
Next
LblSum.Text = intTotal.ToString()
A) 9
B) 16
C) 25
D) 36
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q26: How many times will the message I
Q27: What will be the final value of
Q28: How can you cause scroll bars to
Q29: Which of the following code fragments calculates
Q30: Which property determines the amount of time,
Q31: Which statement about the <b>ListBox.Items.Add</b> method is
Q32: Which of the following ListBox properties can
Q33: A counter is a(n) _that can be
Q34: What is the difference in execution between
Q35: In the following statement that begins a