InterviewSolution
Saved Bookmarks
| 1. |
What Is Local Variable ? |
|
Answer» A data item known within a block, but INACCESSIBLE to code OUTSIDE the block. For example, any variable DEFINED within a method is a local variable and can't be USED outside the method. A data item known within a block, but inaccessible to code outside the block. For example, any variable defined within a method is a local variable and can't be used outside the method. |
|