Which of the following is true regarding the following code?

```
MsgBox( "VBScript is fun!", , "Results" )
```

a) This statement does not need quotes.
b) The function cannot take a null argument.
c) The function should be preceded by the keyword Call
d) The function name must be all lowercase

c) The function should be preceded by the keyword Call

Computer Science & Information Technology

You might also like to view...

A corporate network has grown and manual monitoring of the network devices are no longer feasible. Which of the following would provide central logging for all devices with message priority levels?

A. Install a new server with remote terminals open to monitor equipment. B. Install a syslog server and configure the network devices to send log messages to it. C. Install a SNMP polling server to monitor and collect logs on equipment. D. Install a protocol analyzer to monitor traffic logs.

Computer Science & Information Technology

The code fragment:

Increment::Increment( int c, int i ) : increment ( i ) { count = c; } does not cause any compilation errors. This tells you that: a. count must be a non-const variable. b. count must be a const variable. c. increment must be a non-const variable. d. increment must be a const variable.

Computer Science & Information Technology