Respuesta :

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.

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.

Limosa

Answer:

The correct answer to the following question is: block (or local)

Explanation:

If the variables are defined inside the block of code or the method or a function is called a local variable.

Block scope have Local variable, which means the scope of the local variable is only inside the block or a module in which it defined because every module or a method has its block.