This visual execution trace shows how MATLAB handles complex numbers. We start by assigning z = 3 + 4i. Then we extract the real part using real(z), which gives 3, and the imaginary part using imag(z), which gives 4. Next, we calculate the magnitude with abs(z), resulting in 5, and the angle in radians with angle(z), which is approximately 0.9273. The variable tracker shows how each variable changes step by step. Key moments clarify common confusions like why imag(z) returns just the number 4, why magnitude is 5, and that angle is in radians. The quiz tests understanding of these values and calculations. This helps beginners see exactly how MATLAB processes complex numbers.