In the context of Perl user-defined subroutines, which statement is the most accurate?
Variables declared using the my keyword are global in scope.
Variables declared using the local keyword are only available to the subroutine from which they are declared.
Variables declared using the my keyword are available to the calling subroutine.
Variable declared using the local keyword are available to subsequently called subroutines.
Submit