Question: Question 10 1 pts For the pseudo-program below, assume that variables a, b, c, d, e, f and g hold integer values. (Remember that the

Question 10 1 pts For the pseudo-program below, assume that variables a, b, c, d, e, f and g hold integer values. (Remember that the word eq is used to indicate the equality operator, which will return a Boolean value of True or False .) a = 20 b = 20 C = 15 d = 0 e = 0 f = 0 g = 0 if (a eq b) then d = 100 if (b> c) then e = 120 if (a > b+c) then f = 200 if ((a+b) eq c) then g = 250 print d, e, f, g The output of the print statement will be: 0, 120, 0, 0 100, 120, 0, 0 0, 0, 0, 250 100, 0, 0, 0 O 0, 0, 200,0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
