Unix
Which command is used to copy all files having the string chap and any two characters after that to the progs directory?

cp chap* progs
cp chap?? /progs/*
cp chap[12] /progs/*.*
cp chap?? progs

ANSWER DOWNLOAD EXAMIANS APP

Unix
The special shell variable $* is used

to exit status of ast command executed.
to list the positional parameters
None of these
to process number of the current shell
to name the command being executed

ANSWER DOWNLOAD EXAMIANS APP