Question: (2) On which lines can breakpoints be added to pause execution? (3) If the script is run to a breakpoint on line 7 (thus
(2) On which lines can breakpoints be added to pause execution? (3) If the script is run to a breakpoint on line 7 (thus line 7 hasn't been executed yet), what variables are in the Workspace, and what are their current values? (2) If a breakpoint is placed on line 13, and that is the only breakpoint, what variables are in the workspace, and what are their values the 2nd time the program reaches the breakpoint? clc, clear all global MY GLOB MY_GLOB = 12; input = 5; a = Add_Global(input); b = Add_Global(input); %% Local Functions function [output] =Add_Global(input) end global MY_GLOB input = input + 3; output = input + MY_GLOB; MY GLOB = input;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
