Q. What does the interpreter do when you reference variables in other scopes?
β
Correct Answer: (B)
Traverses the stack
Explanation: Normally when you reference variables in other scopes— at the global level, in other namespaces, and so on—the interpreter needs to traverse the stack to get to the variable.