Question: Explicit variable declaration is required. MyVar is declared at both the module and the procedure level. What is the value of MyVar after first AAA() and then BBB() are run?
- MyVar equals "Procedure AAA Scope"
- ISNULL(MyVar) is TRUE
- MyVar equals "Procedure BBB Scope"
- MyVar is NULL
Answer: The correct answer of the above question is Option C:MyVar equals "Procedure BBB Scope"