Given that the user input for Response is 3, what would be displayed if code corresponding to the following program segment were run?
``` Input Response
Select Case Of Response
Case 1:
Write “You’re a newbie”
Break
Case 2:
Write “You’re Number 2”
Break
Case 3:
Write “The door to Sesame Street is open!”
Break
Default
Write “Huh?”
End Case
```
a. You’re a newbie
b. You’re Number 2
c. The door to Sesame Street is open!
d. Huh?
e. Nothing would be displayed since Response is not one of the conditions in the Case statement.
C
You might also like to view...
The class JFrame has a method named __________ that eliminates the invoking JFrame without terminating the program.
a. close b. dispose c. eliminate d. None of the above
If the user interacts with a component that has no registered event handler, __________
a) the application executes a default event handler b) nothing happens c) the application ends d) an error occurs