InterviewSolution
Saved Bookmarks
| 1. |
Can We Declare A Static Variable Inside A Method? |
|
Answer» STATIC variables are class LEVEL variables and they can't be declared INSIDE a method. If declared, the class will not compile. Static variables are class level variables and they can't be declared inside a method. If declared, the class will not compile. |
|