Biology Forums - Study Force

Science-Related Homework Help Computer Studies Topic started by: ian18 on May 5, 2018



Title: Given the following statements, what values will be passed to the parameters of the subprogram named ...
Post by: ian18 on May 5, 2018
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


Title: Re: Given the following statements, what values will be passed to the parameters of the subprogram ...
Post by: penia_smiles on May 5, 2018
Content hidden