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 2015
Quiz 3: Using Variables and Constants
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
True/False
A named constant's value cannot be changed while the application is running.
Question 2
True/False
You can eliminate the problems that occur as a result of implicit type conversions by entering the Option Explicit On statement in the General Declarations section of the Code Editor window.
Question 3
Multiple Choice
Date variables are automatically set to which value when created?
Question 4
Multiple Choice
The assignment operator in Visual Basic is the ____ symbol.
Question 5
True/False
Calculations involving Decimal variables are not subject to the small rounding errors that may occur when using Double or Single variables.
Question 6
True/False
All numeric variables are automatically initialized to 0 if no initial value is specified when the variable is declared.
Question 7
True/False
You cannot associate a procedure with more than one object or event.
Question 8
Multiple Choice
Which of the following statements subtracts the contents of the intNum1 variable from the contents of the intNum2 variable, and then multiples the difference by 3? The result is assigned to the intResult variable.