Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. The two possible values for a relational expression are ____________________

ID: 640144 • Letter: 1

Question

1. The two possible values for a relational expression are ____________________ ?and________________________ ? .

2. C++ uses the _______________________symbol to represent the AND operator. ????

3. The switch statement and if statements are examples of ___________________statements.

4. In C++ is the meaning of the OR logical operator inclusive or exclusive? ______________

5. C++ uses the ?__________________ symbol to represent the OR operator.

6. It is good programming practice to do what to the operand after the NOT operator? ____________________

7. The switch statement uses the value of a(n) __________________expression to determine which group of statements to branch through.

8. In a switch statement the ___________________ ? branch is followed if none of the case expressions match the given switch expression.

9. C++ allows the programmer to compare numeric values using ______________________ .

10. The C++ symbol for equality is _______________

Fill-in-the-Blank Questions 1·The two possible values for a relational expression are 2. C++ uses the 3·The switch statement and if statements are examples of and symbol to represent the AND operator. statements 4. In C++ is the meaning of the OR logical operator inclusive or exclusive? 5. C++ uses the symbol to represent the OR operator. 6. It is good programming practice to do what to the operand after the NOT operator? 7. The switch statement uses the value of a(n) expression to determine which group of statements to branch through. 8. In a switch statement the branch is followed if none of the case expressions match the given switch expression. 9. C++ allows the programmer to compare numeric values using 10. The C++ symbol for equality is

Explanation / Answer

1. The two possible values for a relational expression are ___true_________________ ?and_______false_________________ ? .

2. C++ uses the _______&&________________symbol to represent the AND operator. ????

3. The switch statement and if statements are examples of ______branching_____________statements.

4. In C++ is the meaning of the OR logical operator inclusive or exclusive? ____exclusive__________

5. C++ uses the ?____||______________ symbol to represent the OR operator.

6. It is good programming practice to do what to the operand after the NOT operator? ________YES____________

7. The switch statement uses the value of a(n) ______case____________expression to determine which group of statements to branch through.

8. In a switch statement the ________default___________ ? branch is followed if none of the case expressions match the given switch expression.

9. C++ allows the programmer to compare numeric values using ________==______________ .

10. The C++ symbol for equality is _____=__________