InterviewSolution
Saved Bookmarks
| 1. |
What Is The Scope Of A Variable Declared Using Private? |
|
Answer» Variables that are DECLARED as "PRIVATE" have SCOPE only within that script in which they are declared. When declaring a VARIABLE of type "Private", Dim keyword is replaced by "Private". Variables that are declared as "Private" have scope only within that script in which they are declared. When declaring a variable of type "Private", Dim keyword is replaced by "Private". |
|