Given the following statements, what values will be passed to the parameters of the subprogram named Vacation?
```Declare Motel As String
Declare Interstate As Integer
Set Motel = “Dew Drop Inn”
Set Interstate = 95
Call Vacation(Motel, Interstate)
Subprogram Vacation(String Lodging, String Road)```
a. Lodging = “Dew Drop Inn”, Road = “95”
b. Lodging = “Dew Drop Inn”, Road = 95
c. Lodging = Motel, Road = Interstate
d. This cannot be done, type mismatch
D
Computer Science & Information Technology
You might also like to view...
In the figure above, the item numbered 1 indicates the ____.
A. XML parser B. DTD C. XML prolog D. XML application
Computer Science & Information Technology
Member objects are constructed their ________ enclosing class object.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology