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
Programming with Microsoft Visual Basic
Quiz 4: The Selection Structure
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
Multiple Choice
What is the value of the following expression: 9 * 2 - 8 > 5 + 2 / 2?
Question 2
True/False
The expression 12 > 0 AndAlso 12 < 10 * 2 evaluates to True.
Question 3
True/False
Comparison operators are always evaluated after arithmetic operators in a conditional expression.
Question 4
True/False
When coding a selection instruction in Visual Basic,the code that follows the Else statement includes those instructions that will be executed when the condition is true.
Question 5
Multiple Choice
The ____ operator is evaluated first in the following expression: 9 * 2 - 8 > 5 + 2 / 2.
Question 6
True/False
You can include an identifying label on a group box by setting the group box's Identity property.
Question 7
Multiple Choice
If the intInventory variable contains the value 28,the condition If intInventory <= 25 Then will evaluate to ____.
Question 8
True/False
The diamond symbol is used in a flowchart for a calculation task.
Question 9
Multiple Choice
The ____ operator is evaluated last in the following expression: 9 * 2 - 8 > 5 + 2 / 2.
Question 10
Multiple Choice
The ____ operator expresses "not equal to."
Question 11
Multiple Choice
Which of the following conditions will evaluate to True when the intPackages variable contains the value 100?
Question 12
True/False
The Not operator would make a True statement False,but would not make a False statement True.
Question 13
Multiple Choice
If dblMiles >= 500 Then dblMiles = dblMiles * 0.45 Else DblMiles = dblMiles * 0.25 End If The dblMiles variable contains the number 575 before the code above is processed.What value will be in the variable after the code is processed?