In MATLAB, the single equal sign (=) is the assignment operator.
What is the result after running the following MATLAB code in the Command Window? Be specific, what is displayed after each command is executed and what value is each variable?
>> num = 7;
>> num = num - 5;
>> num = num * -2;
>> num = num * 2;
>> 52 + 3 * 5;
>> num = num + ans;
3