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