What is wrong with the following calling statement and its corresponding Sub statement?

```
MyProcedure("The Jetsons", 1000, 209.53)
Sub MyProcedure(var1 As Double, var2 As Double, var3 As Double)
```
(A) It is not valid to pass something like "The Jetsons."
(B) Constant values like 1000 cannot be passed, only variables.
(C) var1 is not of the same data type as "The Jetsons."
(D) Nothing is wrong with them.


(C) var1 is not of the same data type as "The Jetsons."

Computer Science & Information Technology

You might also like to view...

Security reviews are primarily an ____ function.

A. audit B. oversight C. implementation D. intrinsic

Computer Science & Information Technology

On the Software page in Microsoft Intune you can view…

A) Critical updates and service packs. B) Security updates. C) Definition updates. D) Update rollups. E) Mandatory updates and third-party updates. F) All of the above

Computer Science & Information Technology

If the terminal driver receives a key while in non-blocking mode, it

A. stores the character until a program calls read B. discards the character

Computer Science & Information Technology

A _____________ allows multiple lines of text to be displayed.

(a) JTextField (b) JTextArea (c) JTextBox (d) JTextValue

Computer Science & Information Technology