the Correct answer is : a variable with a local scope is only visible when the is executing in the block containing the variable’s definition.
Step-by-step explanation:
-The scope of a variable is the region of a program in which the variable is visible in which it is accessible by its name and can be used.
-the scope of a local variable is the body of the method in which it is declared. In other words, the variable is visible in the body of the method where its declaration appears, but it is not visible on the outside the method.