Exam 6: Loop Structures
Exam 1: Introduction to Visual Basic 2017 Programming112 Questions
Exam 2: Program and Graphical User Interface Design112 Questions
Exam 3: Program Design and Coding112 Questions
Exam 4: Variables and Arithmetic Operations112 Questions
Exam 5: Decision Structures111 Questions
Exam 6: Loop Structures112 Questions
Select questions type
To remove the picture in the background of a form, in the Properties window press and hold or right-click the ellipsis button of the BackgroundImage property and select Reset.
Free
(True/False)
4.9/5
(32)
Correct Answer:
True
Identify the letter of the choice that best matches the phrase or definition
Premises:
A loop that is always executed at least once
Responses:
looping
infinite
InputBox
Correct Answer:
Premises:
Responses:
Free
(Matching)
4.9/5
(33)
Correct Answer:
A loop that never ends is called a(n) ____ loop.
Free
(Multiple Choice)
4.7/5
(26)
Correct Answer:
B
What will be the value of the variable intTotalCount when the following code is executed? For intOuterCount = 1 to 5
For intInnerCount = 1 to 4
intTotalCount +=1
Next
Next
(Multiple Choice)
4.8/5
(38)
A(n) ____________________ is a group of commands, or items, presented in a list.
(Short Answer)
4.9/5
(44)
One advantage of a ___________ is that it conserves space instead of cluttering a form with objects such as buttons.
(Multiple Choice)
4.9/5
(29)
The ____________________ statement is the last line of a For loop.
(Short Answer)
4.8/5
(44)
Case 6-2 Robin thinks that she has a good handle on the use of compound operators but she wants to do a couple of sample problems just to make certain. In both of the problems below, Robin assumes that intResult = 24.
When Robin correctly calculates intResult -=3, what value does she get?
(Multiple Choice)
4.9/5
(37)
A ____ operator allows you to perform arithmetic operations with a variable and store the results back to that variable.
(Multiple Choice)
4.9/5
(38)
The ____ character is used to indicate that a letter is a hot key on a menu item.
(Multiple Choice)
4.9/5
(34)
The ____ values used in a For...Next loop can vary based on input from a user.
(Multiple Choice)
4.9/5
(42)
____ is a fundamental process that repeats instructions until a condition is true or while a condition is true.
(Multiple Choice)
4.8/5
(42)
A(n) ____________________ value is the value in a For...Next loop that is added to, or subtracted from, the beginning value on each iteration of the loop.
(Short Answer)
4.8/5
(40)
After an application is completely debugged and working properly, you can ____________________ it.
(Short Answer)
4.8/5
(37)
You can use the InputBox function instead of a TextBox object to obtain input.
(True/False)
4.7/5
(38)
The InputBox function returns a null string ("") when a user taps or clicks the Cancel button.
(True/False)
4.7/5
(30)
A For...Next loop with a beginning value of 1, an ending value of 25, and a Step value of 3 will execute ____ times.
(Multiple Choice)
4.8/5
(42)
Showing 1 - 20 of 112
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)