Multiple choice technology programming languages

The special variables $* and $@ denote all the _________ parameters

  1. positional

  2. variable

  3. Named

  4. internal

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

In shell scripting, $* and $@ expand to all positional parameters passed to the script or function starting from $1. They do not represent named variables, internal shell configurations, or generic variables, making 'positional' the correct term for these special parameters.