Answer the following statements true (T) or false (F)
1. A while loop will always iterate at least once, even if the Boolean expression is initially false.
2. Counter variables are commonly used to hold Boolean values that control the number of times a loop iterates.
3. In most circumstances you should avoid writing loops that never-end.
4. The ++ operator is pronounced “plus plus” and the -- operator is pronounced “minus minus”.
5. Incrementing and decrementing are so commonly done in programs that C# provides the ++ and -- unary operators for just these purposes.
1. false
2. false
3. true
4. true
5. true
You might also like to view...
The height of a binary tree is sensitive to the order in which items are inserted into the tree.
What will be an ideal response?
Passing a pointer to a pointer is called __________.
a) double direction b) pointer passing c) double indirection d) indirection