InterviewSolution
Saved Bookmarks
| 1. |
What is the scope of a variable declared using Public? |
|
Answer» Variables declared using "Public" Keyword are available to all the procedures across all the associated scripts. When declaring a variable of type "public", Dim keyword is replaced by "Public". |
|