InterviewSolution
Saved Bookmarks
| 1. |
What is the scope of a variable declared using Dim? |
|
Answer» Variables declared using "Dim" keyword at a Procedure level are available only within the same procedure. Variables declared using "Dim" Keyword at script level are available to all the procedures within the same script. |
|