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
Quiz 5: More on the Selection Structure
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
True/False
A nested selection structure can appear within or immediately before the True path or the False path of the outer selection structure.
Question 2
Multiple Choice
Each Case clause represents a different ____.
Question 3
True/False
Both paths in a selection structure can include instructions that declare variables, perform calculations, and so on.
Question 4
True/False
A primary decision is always made by an outer selection structure, while a secondary decision is always made by a nested selection structure.
Question 5
Multiple Choice
When either a selection structure's True path or its False path contains another selection structure, the inner selection structure is referred to as a ____.
Question 6
Multiple Choice
The expression 1 To 5 in the Case 1 To 5 clause specifies the range of numbers from ____.
Question 7
Multiple Choice
The Select Case statement ends with the ____ clause.
Question 8
Multiple Choice
When using the Select Case statement, the data type of the ____ must be compatible with the data type of the selectorExpression.
Question 9
Multiple Choice
If the Select Case statement includes a Case Else clause, the Case Else clause must be the ____ clause in the statement.
Question 10
Multiple Choice
You use the ____ keyword when you know only one end of a range (either the upper or lower end) .
Question 11
True/False
When a multiple-alternative selection structure has many paths from which to choose, it is often simpler and clearer to use the If/ElseIf/Else form of the selection structure rather than the Select Case statement.