Tag: operating systems

Questions Related to operating systems

  1. ls -a

  2. ls -a|grep "^."

  3. ls -a|grep "^."

  4. ls -ltra


Correct Option: C

Command to kill the last background job?

  1. kill $!

  2. kill -9

  3. kill bg

  4. kill $*


Correct Option: A

How many prompts are available in a UNIX system?

  1. 0

  2. 1

  3. 2

  4. 3


Correct Option: C

How do you find out the number of arguments passed to the shell script?

  1. $*

  2. $@

  3. $#

  4. $?


Correct Option: C

How do you find out the current directory you’re in?

  1. $dir

  2. pwd

  3. currdir

  4. none


Correct Option: B