Chapter 10: So Many Paths…So Little Time (Multiple-Alternative Selection Structures)
TRUE/FALSE
1. At times, you may need to create a selection structure that can choose from several alternatives.
2. Another form of the If…Then…Else statement is called If/ElseIf/Else.
3. Using nested If…Then…Else statements is a much more convenient way of coding a
multiple-alternative selection structure than using the Case statement.
4. Variables declared with the Integer, Decimal, and Double data types can store numbers only.
5. The value stored in the Text property is treated as alphanumeric text.
6. As is true in most programming languages, string comparisons in Visual Basic are not case sensitive.
7. In Visual Basic, the uppercase version of a letter is the same as its lowercase counterpart.
8. Each character on the computer keyboard is stored in the computer’s internal memory using a different
Unicode value.
9. Unicode assigns a unique numeric value to each character used in the written languages of the world.
10. The If…Then…Else statement is the only statement you can use to code a multiple-path selection
structure in Visual Basic.
11. The Select Case statement ends with the End Select clause.
12. You can have as many Case clauses as necessary in a Select Case statement.