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

Computer Science & Information Technology

You might also like to view...

The Java statement:

g.fillOval(290, 100, 90, 55); a. Draws a filled oval with its center at coordinates x=290, y=100, with height=90 and width=55. b. Draws a filled oval with its leftmost point at coordinates x=290, y=100, with height=90 and width=55. c. Draws a filled oval bounded by a rectangle with its upper-left corner at coordinates x=290, y=100, with width=90 and height=55. d. Draws a filled oval bounded by a rectangle with its upper-left corner at coordinates x=290, y=100, with height=90 and width=55.

Computer Science & Information Technology

The .jpg extension identifies a file as containing ________ media

A) video B) text C) picture D) audio

Computer Science & Information Technology

According to the Gregg Reference Manual, which of the following page number formats should display in the bottom center of preliminary pages such as CONTENTS?

A) Roman numerals (IV) B) Numeric (3) C) Uppercase (A) D) Lowercase (c)

Computer Science & Information Technology

Which of the following style types allows you to format a series of lines with numbers or bullets?

A. Character B. Paragraph C. List D. Table

Computer Science & Information Technology