Site MapHelpFeedbackTrue or False
True or False
(See related pages)

1
An array is very different from a list box or a combo box.
A)True
B)False
2
An array is a series of individual variables that are all referenced by the same name.
A)True
B)False
3
A major advantage of using arrays is the ability to use variables for subscripts to reference an element of the array.
A)True
B)False
4
A subscript can be a constant, a variable, or a numeric expression.
A)True
B)False
5
Array subscripts are zero based, which means the first element is always element one.
A)True
B)False
6
Array values may be assigned in the declaration statement.
A)True
B)False
7
Each element in an array can be a different data type as long as you specify the data types in the declaration of the array.
A)True
B)False
8
The statement string[] nameString = new string[10]; creates 11 elements with subscripts of 0 through 1
A)True
B)False
9
Your program will throw an exception if you reference an element with a subscript that is out of range.
A)True
B)False
10
When executing a foreach statement, C# automatically references each element of the array.
A)True
B)False







Programming in Visual C# 2005Online Learning Center

Home > Chapter 8 > True or False