Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
C++
Quiz 4: Selection Structures
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Short Answer
In the switch statement, the ____________________ keyword identifies values that are compared with the switch expression s value.
Question 42
Short Answer
If ____________________ statements are omitted in a switch statement, all cases following the matching case value, including the default case, are executed.
Question 43
Short Answer
An if-else statement without an else part is called a(n) ____________________ if statement.
Question 44
Short Answer
The if-else statement is written: if (expression) statement1; else statement2; . If the value of expression is non-zero, ____________________ will be executed.
Question 45
Short Answer
The technique of ____________________ programming includes code to check for improper input data.
Question 46
Short Answer
Including one or more if statements inside an existing if statement is called a(n) ____________________ if statement.
Question 47
Short Answer
Any variable declared within a block of statements has meaning only between its ____________________ and the closing braces defining the block.
Question 48
Short Answer
Because of the way computers store single-precision and double-precision numbers, you should avoid testing for equality of single-precision and double-precision values and variables by using the relational operator ____________________.