(10%)
Determine whether the following code is correct or not. If it is
correct, predict its output. If it is incorrect, point out the
mistake(s).
# Pass by Value
def max(a, b, c):
a = b
a = c
print("The maximum value is", a)
return a
def main():
x, y, z = 5, 4, 8
print( max(x, y, z ) )
print( x, y, z )
main()