OOPS Concepts What are local and global variables? A variable declared inside a method is known as “local variable” and its usage is limited within the method in which it declared only. A global variable (known as instance variable in Java) is declared outside of any method but wihtin the…
The post Interview Questions for Freshers appeared first on Way2Java.