Q.1.
What is a shell script?
Q.2.
Shell scripts need to be saved with an extension .sh .
Q.3.
Shell scripts are executed in a separate child shell process.
Q.4.
The first line in any shell script begins with a _____
Q.5.
To run the script, we should make it executable first by using _____
Q.6.
To spawn a child of our own choice for running the script, we can use ___ command.
Q.7.
Which command is used for making the scripts interactive?
Q.8.
read command is shell’s internal tool.
Q.9.
A single read statement can be used with one or more variables.
Q.10.
What are positional parameters?
Q.11.
The first argument is read by the shell into the parameter ___
Q.12.
The complete set of positional parameters is stored in ______ as a single string.
Q.13.
Which of the following is used for storing the number of positional parameters?