G Given : integer x = 40, y = 35, z = 20, w = 10. Comment about the output of the following two statements ? print x * y / z – w print x * y / (z – w) August 27, 2021 1 Min Read 0 350 August 27, 2021 1 Min Read 0 350 Answer : A. Differ by 80 Programming Editor Continue Reading