What is wrong with the following VBScript code?

```
1 Select Case x
2 Case 1
3 Call MsgBox("1")
4 Case 2
5 Call MsgBox("2")
6 Case Else
7 Call MsgBox("?")
8 End Select
```

a) Nothing.
b) Line 1 should read Switch Case x and Line 8 should read End Switch.
c) There should be colons at the ends of lines 2, 4 and 6
d) There should be break statements after lines 3, 5 and 7.

a) Nothing.

Computer Science & Information Technology

You might also like to view...

The ________ property of the wave filter shifts the effect in space.

a) freq b) direction c) phase d) strength

Computer Science & Information Technology

Safari blocks pop-ups by default; if you want to enable pop-ups to appear, click View on the menu bar, and then click Block Pop-Up Windows to deselect it.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology