Multiple choice technology operating systems

which variable holds the number of values of comman line parameters

  1. $#
  2. $*
  3. $@
  4. $?
Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The $# variable holds the count of positional parameters passed to a script or function. $* and $@ hold all parameters (as one string or separate arguments), and $? holds the last exit status.