What is the logical difference among Move A TO B and COMPUTE B = A?
Ans) In case of Move A TO B it will move whatever the value of a in to b.
It mean it will move numeric, alphanumeric and alphabetic value.
In case of COMPUTE B = A it will assign the value of a in to b.
But in case of compute only numeric value will be compute.
mov a,b Ans- means whatever the data present on the 'b' it will move into 'a'