MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following code snippet. What is the function of the code snippet? namespace McqsMentorConsoleApplication var scope = "global scope"; function checkscope() { var scope = "local scope"; function f() { return scope; } return f; |
| A. | Returns value null |
| B. | Returns exception |
| C. | Returns the value in scope |
| D. | None of the mentioned |
| Answer» D. None of the mentioned | |