Which of the following choices demonstrates the correct syntax to pass the argument $arg2 to the subroutine getpass?
getpass($arg2);
call &getpass($arg2);
sub &getpass($arg2);
call getpass($arg2);
Submit