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
C Correct answer
Explanation

Shell functions are called by their name without parentheses, unlike some other languages. Using function1() would try to define it, and there's no 'call' or 'ask' keyword.