Multiple Choice
In the following code segment, what type of variable is counter?
Dim temp, counter, check As Integer
Do
temp = CInt(InputBox("Enter a number.") )
counter += temp
If counter = 10 Then
check = 0
End If
Loop Until (check = 0)
A) counter
B) accumulator
C) sentinel
D) loop control variable
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q49: How many lines of output are produced
Q50: The number of items in ListBox1 is
Q51: Each item in a list box is
Q52: Which of the following expressions refers to
Q53: A Do…Loop Until block is always executed
Q55: A Do While loop checks the While
Q56: If one For...Next loop begins inside another
Q57: How many times will HI be displayed
Q58: Which of the following is not a
Q59: In a For statement of the form