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

Repeating Processing Tasks: Loop Structures

True or False



1

It is possible to write a loop using the Do While...Loop structure which will never execute at all.
A)True.
B)False.
2

The following code will run through the loop structure at least one time.

Dim X As Integer = (4 Mod 4)
Do Until Not(X)
X = X + 1
Loop
A)True.
B)False.
3

The values displayed in a ListBox are defined exclusively at design-time and there exists no facility to modify the options in this control during the execution of your application.
A)True.
B)False.
4

It would be most appropriate to use the RemoveAt() function to eliminate a value from a ListBox control when you know the index of the item you wish to remove.
A)True.
B)False.
5

The ListView provides a GUI interface to edit the code behind your Visual Basic .NET programs.
A)True.
B)False.




McGraw-Hill/Irwin