Which statement best describes the scope of a local variable in Java?
A local variable is accessible only within the block of code in which it is declared.
A local variable can be accessed from any method within the class it is declared.
A local variable declared in a method is accessible by any other methods called