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

1 answer

nothing - there is a syntax error.