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

Working with Collections

True or False



1

To perform a sequential or linear search on a multi-dimensional array, one would probably need to use nested loops.
A)True.
B)False.
2

If you dimension an array to have 100 elements, and decide at run-time that you now need the variable to hold 150 elements instead, it is possible to re-dimension an array to the new size.
A)True.
B)False.
3

A SortedList is a Visual Basic .NET data structure which combines different properties of a Hashtable and an ArrayList.
A)True.
B)False.
4

The statement PriceList(4) returns the 5th element in an array.
A)True.
B)False.
5

The elements of a SortedList can be access by either an index or unique key value.
A)True.
B)False.




McGraw-Hill/Irwin