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". 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". |
|