Respuesta :
Answer:
Following are the variables which is visible in when the last module is called:
- d,e,f
- d,e,f
- b,c,d
- b,c,d
- c,d,e
Explanation:
Missing information :
- The above question option needs to holds the function name as fun1,fun2 or fun3, but the options are holding the sub1,sub2, and sub3.
- The above question asked about the variable when the last function is called. The explanation of the visible variable is as follows:
- For the first option, the last function is called is fun3 which holds the variable as d,e, and f, and no variable is passed as the argument, So currently visible variable are d,e, and f.
- For the second option, the last function is called is fun3 which holds the variable as d,e, and f, and no variable is passed as the argument, So currently visible variable are d,e, and f.
- For the third option, the last function is called is fun1 which holds the variable as b,c and d and no variable is passed as the argument, So currently visible variable are b,c, and d.
- For the fourth option, the last function is called is fun1 which holds the variable as b,c and d and no variable is passed as the argument, So currently visible variable are b,c, and d.
- For the fifth option, the last function is called is fun2 which holds the variable as c,d and e and no variable is passed as the argument, So currently visible variable are c,d, and e.