30. Consider the following segment of pseudocode:
int foo (x)
int num
return num
x*2
print "April Fools!"
end foo
print foo (4)
What is the output from the code above?
a)
April Fools! only
b) 4 only
c) 8 only
d) 8 and April Fools!



Answer :

Other Questions