Multiple Choice
Which of the following will happen if you declare a variable named message after the if statement instead of before it?
A) The scope of message extends from its declaration only until the end of the true block.
B) The scope of message extends from its declaration only until the end of the false block.
C) The scope of message extends from the point where it is declared to the end of the program.
D) The location of the message variable does not affect the output.
Correct Answer:

Verified
Correct Answer:
Verified
Q14: Suppose that a true block is not
Q15: When comparing the data in two objects
Q16: In what situation would you use the
Q17: When the data fall into two mutually
Q18: In an if statement, curly braces around
Q20: A test plan includes running the application
Q21: The conditional operator (?:) can be used
Q22: Inside the block of a switch statement,
Q23: && and || have the same level
Q24: Which of the following are reasons why