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 3: Using Variables and Constants
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
True/False
All numeric variables are automatically initialized to 0 if no initial value is specified when the variable is declared.
Question 2
True/False
A Boolean variable is initialized to the value True if no initial value is stated when the variable is declared.
Question 3
True/False
Spaces are allowed in variable names.
Question 4
Multiple Choice
Instead of storing data in the properties of various controls,programmers can create ____,which are memory locations inside the computer,to store data.
Question 5
Multiple Choice
Object and String variables are automatically initialized using ____.
Question 6
Multiple Choice
Every numeric data type in Visual Basic has a ____ method that can be used to convert a string to that numeric data type.
Question 7
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 8
True/False
Data types and classes are not related to each other.
Question 9
Multiple Choice
Which of the following statements declares a Double variable named dblAverage?
Question 10
True/False
Calculations involving Decimal variables are not subject to the small rounding errors that may occur when using Double or Single variables.
Question 11
Multiple Choice
The assignment operator in Visual Basic is the ____ symbol.
Question 12
True/False
A named constant's value cannot be changed while the application is running.
Question 13
True/False
A variable declared in the Declaration section of a form is called a procedure-level variable.
Question 14
True/False
You cannot associate a procedure with more than one object or event.
Question 15
Multiple Choice
A memory variable that is a Double data type requires ____ bytes of storage.
Question 16
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.