Observe the script below:
echo ” Enter your name : “
read name
echo ” Hello $name , Good Morning. “
What does read do in this script? (Choose all that apply.)
A.
It will store the input in the name variable.
B.
It will accept only file name as the input.
C.
It will make the script stop execution if numbers are given as input.
D.
It will make the program pause till the input is given through the standard input.
Explanation: