Tag: operating systems

Questions Related to operating systems

  1. It looks for the all the abc strings in line 3 and replaces them to xyz.

  2. It looks for the first abc string in the first 3 lines and replaces to xyz.

  3. It looks for the first abc string in line 3 and replaces to xyz.

  4. It looks for the first 3 abc string in the file and replaces them to xyz.


Correct Option: C

What symbol is used to "pipe" two commands together?

  1. :

  2. ||

  3. !


Correct Option: D
  1. find ./ -type file -user foo

  2. find ./ -type f -owner foo

  3. find ./ -type f -o foo

  4. find ./ -type f -user foo


Correct Option: D
  1. mntsmb -s //jupiter/data /mnt/Data

  2. mount -t smbfs /mnt/Data //jupiter/data

  3. mount -t smbfs //jupiter/data /mnt/Data

  4. smbfs -mount //jupiter/data /mnt/Data


Correct Option: C