question archive In the following the pseudocode, the inputs are pairs of numbers, A and B
Subject:Computer SciencePrice: Bought3
In the following the pseudocode, the inputs are pairs of numbers, A and B. IF A is 10 and B is 20, what
happens when the code is executed? WHILE A < 20 OR B > 30 IF A > 5 THEN B = B * A ELSE IF A <
5 THEN B = B + A ELSE B = A ENF IF END IF DO