Multiple choice technology operating systems

How to call the function function1 in shell

  1. function1()

  2. call function1

  3. function1

  4. ask function1

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

In shell scripting, functions are invoked using the function name followed by parentheses. Without parentheses, the shell would treat it as a command or external program name rather than a function call.