Asked by tj
What will the following pseudo code program display?
Module main ( )
Declare Integer x = 1
Declare Real y = 3.4
Display x, “ “, y
Call changeUs (x, y)
Display x, “ “, y
End Module
Module changeUs ( Interger a, Real b)
Set a = 0
Set b = 0.0
Display a, “ “, b
Module main ( )
Declare Integer x = 1
Declare Real y = 3.4
Display x, “ “, y
Call changeUs (x, y)
Display x, “ “, y
End Module
Module changeUs ( Interger a, Real b)
Set a = 0
Set b = 0.0
Display a, “ “, b
Answers
Answered by
Steve
nothing - there is a syntax error.
There are no AI answers yet. The ability to request AI answers is coming soon!
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.