Exam 8: More on the Repetition Structure
Exam 1: Overview an Introduction to Programming17 Questions
Exam 2: An Introduction to Visual Basic 201542 Questions
Exam 3: Creating a User Interface42 Questions
Exam 4: Memory Locations and Calculations42 Questions
Exam 5: Making Decisions in a Program42 Questions
Exam 6: More on the Selection Structure42 Questions
Exam 7: Repeating Program Instructions42 Questions
Exam 8: More on the Repetition Structure42 Questions
Exam 9: Sub and Function Procedures42 Questions
Exam 10: Arrays42 Questions
Exam 11: String Manipulation and Menus42 Questions
Exam 12: Structures and Sequential Files42 Questions
Exam 13: Access Databases and Linq42 Questions
Exam 14: Creating Simple Web Applications42 Questions
Exam 15: Creating Classes and Objects42 Questions
Select questions type
You use the ____ tool in the toolbox to add a combo box to an interface.
Free
(Multiple Choice)
4.8/5
(46)
Correct Answer:
A
Unlike selection structures, repetition structures cannot be nested.
Free
(True/False)
4.8/5
(35)
Correct Answer:
False
Why is it highly recommended to specify the name of the counter variable in the Next clause of a For...Next statement?
Free
(Essay)
4.9/5
(48)
Correct Answer:
Specifying the name of the counter variable in the Next clause within the For…Next syntax is highly recommended because it makes your code more self-documenting and easier to understand.
A ____ is similar to a list box in that it allows the user to select from a list of choices.
(Multiple Choice)
4.9/5
(31)
In the following For clause, how many times will the computer count though the loop structure? For counter As numeric = 1 To 5 Step 1
(Multiple Choice)
4.9/5
(38)
In the following For clause, if the stepvalue is negative, then the startvalue must be ____ to the endvalue for the loop instructions to be processed. For counter [As datatype] = startvalue To endvalue [Step stepvalue]
(Multiple Choice)
4.7/5
(37)
In the following For clause, if you omit the stepvalue argument, a stepvalue of ____ is used. For counter [As datatype] = startvalue To endvalue [Step stepvalue]
(Multiple Choice)
4.8/5
(37)
You can place one For...Next statement within another For...Next statement.
(True/False)
4.9/5
(36)
The ____________________ method calculates the periodic payments on a loan amount.
(Short Answer)
4.9/5
(35)
The style of a combo box is controlled by the combo box's ____ property.
(Multiple Choice)
4.9/5
(44)
In Visual Basic, how many styles of combo boxes are available?
(Multiple Choice)
4.7/5
(44)
In the following For clause, the startvalue , endvalue , and stepvalue items must be a(n) ____________________ data type.
For counter [As datatype] = startvalue To endvalue [Step stepvalue]
(Short Answer)
4.9/5
(45)
How do you decide where to declare the For…Next statement's counter variable? What considerations should be taken into account?
(Essay)
4.8/5
(35)
In a For...Next statement, the declaration, initialization, update, and comparison tasks are handled by the ____ clause.
(Multiple Choice)
4.8/5
(39)
Showing 1 - 20 of 42
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)