Multiple choice technology programming languages

"The command is used within a function to exit the function with a given status. "

  1. "local

  2. " function

  3. "return

  4. "parameter

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The return command exits a function and returns an exit status value to the caller. local is for variable scope, function is not a command, and parameter is not a shell command.