Tag: operating systems

Questions Related to operating systems

  1. Windows 2000 Server License

  2. Terminal Server Client Access License

  3. Microsoft Exchange Server Client License

  4. Microsoft IIS Server License


Correct Option: B
  1. [HKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\RunOnce]

  2. [HKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\Start]

  3. [HKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\Run]

  4. [HKEY_LOCAL_MACHINE\software\microsoft\windows\currentversion\Startup]


Correct Option: C

How can you list the files present in a directory in alphabetical order ?

  1. ls -S

  2. By executing the script - for myfile in * do echo "$myfile" done

  3. ls -t

  4. a,b and c are correct

  5. a is incorrect and b is correct


Correct Option: E
  1. ls -lrt !cp:2

  2. ls -lrt !mv:1

  3. ls -lrt /media/mounted/ext/drive1/newmyfile.dat

  4. a and b will give "Command not found error" and c will work fine and all other options are incorrect.

  5. a,b and c will give correct results.


Correct Option: E

You are done using your external memory disk (say-KINSTON Pen disk) in Linux and you want to unmount it. But you get an error message like "umount: /media/KINGSTON: device is busy". Which of the following you can use to UNMOUNT IT SAFELY.

  1. Find the process that is using the drive and kill it safely.

  2. option a is correct and the following needs to be done to implement it: fuser /media/KINGSTON;fuser -k /media/KINGSTON; umount /media/KINGSTON

  3. Option a is incorrect and unsafe and you need to hard boot to solve this problem.

  4. Use a force option on unmount to acheive this : umount -F /media/KINSGTON

  5. a and b are correct.


Correct Option: E