To ________ a variable means to decrease its value by 1.
Blog
When you want to create a check box on a form, you use the _…
When you want to create a check box on a form, you use the ________ control which is found in the Common Controls section of the Toolbox.
Incrementing and decrementing are so commonly done in progra…
Incrementing and decrementing are so commonly done in programs that C# provides the ++ and — unary operators for just these purposes.
A(n) ________ statement has two parts: an if clause and an e…
A(n) ________ statement has two parts: an if clause and an else clause.
The ________ loop is a posttest loop which means it performs…
The ________ loop is a posttest loop which means it performs an iteration before testing its Boolean expression.
Each time a loop executes its statement(s), we say the loop…
Each time a loop executes its statement(s), we say the loop is performing a(n) ________.
Because the for loop tests its Boolean expression before it…
Because the for loop tests its Boolean expression before it performs an iteration, it is a ________ loop.
Once you create a ListBox control, you add items you wish to…
Once you create a ListBox control, you add items you wish to display to its ________ property.
A ________ expression is an expression that can be evaluated…
A ________ expression is an expression that can be evaluated as either true or false.
The second expression appearing in the header of a for loop…
The second expression appearing in the header of a for loop is the ________ expression which is a Boolean expression that determines whether the loop will repeat.