McGraw-Hill OnlineMcGraw-Hill Higher EducationLearning Center
Student Center | Instructor Center | Information Center | Home
Intro to VB.NET
Projects
Comprehensive Projects
Chapter Objectives
PowerPoint Presentations
Multiple Choice Quiz
True or False
Examples from the Text
Feedback
Help Center


Learning Programming Using Visual Basic.Net
Bill Burrows, University of Washington
Joe Lanford, University of Rochester

Representing Data - Constants and Variables

True or False



1

The following code will assign a value to the variable MyAge:

Dim MyAge As Integer
MyAge = "Twenty-five"
A)True.
B)False.
2

When your program "throws an exception", this means that it is waiting for some piece of data to be returned to it before it can continue.
A)True.
B)False.
3

If a piece of code is written in a sequential flow of control, the flow of control may not be altered by portions of your code.
A)True.
B)False.
4

A variable that is declared inside of one procedure may be access by any other procedure.
A)True.
B)False.
5

A variable declared in a form's declarations section is said to have module-level scope, and is therefore available to any procedure contained in that module.
A)True.
B)False.




McGraw-Hill/Irwin