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

1
If you specify the index position of an item using the Insert method, do not set the list control's Sort property to true.
A)True
B)False
2
If no item is selected in a list for a list control, that control's SelectedIndex property will be set to -
A)True
B)False
3
The Items.Count property is always one more than the highest possible value in the SelectedIndex.
A)True
B)False
4
The Remove and RemoveAt methods both require specification of the index number of the item to be deleted from the list.
A)True
B)False
5
A single execution of the statement(s) in a loop is called an iteration.
A)True
B)False
6
You should use a do/while loop if you know exactly how many times the iterations should occur.
A)True
B)False
7
The do/while loop is called a posttest which means the statements inside the loop will always be executed at least once.
A)True
B)False
8
Boolean variables are always either true or false.
A)True
B)False
9
A do/while loop has three parts: initialization, the condition, and the action to occur after each iteration.
A)True
B)False
10
If you decrement the counter in a for loop rather than increment it, you must write the condition to test for the upper bound.
A)True
B)False







Programming in Visual C# 2005Online Learning Center

Home > Chapter 7 > True or False