Choose if the flowchart is correct (TRUE) or wrong (FALSE). An algorithm to swap the value stored in A to B, and vice versa is shown below. The algorithm should work for any value of A and B. For example, if A=1 and B=3, the new values after swapping are A=3 and B=1. Hint: Trace the code.
Main
Tiempo restante 0:31:3
Integer A, B, T
Input A
Input B
T = A
A = B
B = T
Output "The value of A is " & A
Output "The value of B is " & B
End
Seleccione una: