The scope of a variable refers to the section of the code where the variable is accessible.
Source Code
public void myMethod() {
int myVar = 0; // myVar is only accessible within myMethod
}
Limit the scope of variables as much as possible to improve readability and reduce the chance of errors.