Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Microsoft Visual Basic 2015 RELOADED
Quiz 8: More on the Repetition Structure
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
Multiple Choice
When using the Do...Loop statement to code a counter-controlled loop, you must include a statement to declare and ____ the counter variable.
Question 2
Multiple Choice
You use the ____ method to select all of the text contained in a text box.
Question 3
True/False
Three styles of combo boxes are available in Visual Basic.
Question 4
Multiple Choice
The purpose of the ____ operator is to reverse the sign of a number.
Question 5
True/False
A combo box cannot replace a list box.
Question 6
Multiple Choice
In a For...Next statement, the declaration, initialization, update, and comparison tasks are handled by the ____ clause.
Question 7
Multiple Choice
A ____ sign in a For clause indicates that the loop body will be processed as long as the counter variable's value is less than or equal to the number or variable following the sign.
Question 8
Multiple Choice
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]