Question: clc, clear all global MY_GLOB MY_GLOB = 12; input = 5; a = Add_Global(input); b = Add_Global(input); = 5 = %% Local Functions function (output]=Add_Global(input)


clc, clear all global MY_GLOB MY_GLOB = 12; input = 5; a = Add_Global(input); b = Add_Global(input); = 5 = %% Local Functions function (output]=Add_Global(input) global MY_GLOB input = input + 3; output = input + MY_GLOB; MY_GLOB = input; end = (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
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
