Introduction to Linux I Chapter 12 Exam

Last Updated on February 20, 2020 by Admin

Introduction to Linux I Chapter 12 Exam Answer

  1. Question ID 503

    Which archiving method is compatible across Linux, Microsoft Windows and Mac operating systems?

    • cpio
    • dd
    • zip
    • tar
  2. Question ID 504

    Which option to the zip command can be used to recursively compress multiple directories?

    • -r
    • -R
    • -l
    • -d
  3. Question ID 505

    Which option to the zip command will list its files without uncompressing them?

    • -R
    • -l
    • -c
    • -F
  4. Question ID 506

    The unzip command can be used without options to extract files from a zip archive.

    True or False?

    • True
    • False
  5. Question ID 509

    Which option to the gzip command can be used to retain the uncompressed files when creating an archive?

    • -R
    • -F
    • No option needed, gzip does this by default
    • -c
  6. Question ID 510

    Which option to the unzip command can be used to estimate the size of an archive when it is decompressed?

    • -l
    • -c
    • -R
    • -F
  7. Question ID 511

    It is not possible to recursively compress files within directories with gzip.

    True or False?

    • True
    • False
  8. Question ID 512

    To decompress the archive example.gz, use the following command:

    • gunzip example.gz
    • gunzip -x example.gz
    • gzip -u example.gz
    • gzip -x example.gz
  9. Question ID 513

    gzip and bzip are aliases for the same utility.

    True or False?

    • True
    • False
  10. Question ID 514

    bzip2 archives are typically indicated with which file extension?

    • .bz
    • .bz2
    • .b2
    • .gz
  11. Question ID 515

    Which option to the bzip2 command can be used to report the compression ratio of an archive?

    • -l
    • -R
    • -v
    • -c
  12. Question ID 516

    Which option to the bzip2 command can be used for recursive compression?

    • -v
    • bzip2 doesn’t support recursive compression
    • -c
    • -R
  13. Question ID 517

    gzip and bzip2 use the same compression algorithm.

    True or False?

    • True
    • False
  14. Question ID 518

    Which of the following functions is not a primary use of the tar command:

    • Extract archives
    • View archives
    • Create archives
    • Repair corrupted archives
  15. Question ID 519

    The tar command supports which of the following styles of option(s)?

    (choose three)

    • DOS
    • GNU
    • BSD
    • Unix
  16. Question ID 520

    The tar command supports:

    • gzip compression only
    • bzip compression only
    • Both gzip and bzip2 compression
    • only uncompressed archives
  17. Question ID 521

    Which of the following commands could be used to extract the archive, example.tar?

    • tar -uz example.tar
    • tar -xz example.tar
    • tar -xf example.tar
    • tar -uf example.tar
  18. Question ID 522

    By default, tar will attempt to extract an archive…

    • into the working directory.
    • to the specified directory.
    • into the archive’s parent directory.
    • into the user’s home directory.
  19. Question ID 523

    The cpio command has four modes of operation.

    True or False?

    • True
    • False
  20. Question ID 524

    Which of the following options puts the cpio command in copy-out mode?

    • -v
    • -u
    • -o
    • -i
  21. Question ID 525

    Which of the following options puts the cpio command into copy-in mode?

    • -i
    • -u
    • -o
    • -v
  22. Question ID 526

    Which of the following options allows the cpio command to overwrite existing files?

    • -u
    • -v
    • -o
    • -i
  23. Question ID 527

    The cpio command will preserve metadata when copying files.

    True or False?

    • True
    • False
  24. Question ID 528

    When copying entire devices using the dd command, you must specify:

    • block size and count only
    • input file and output file only
    • input file, output file, and block count
    • input file, output file, block size and count
  25. Question ID 529

    The dd command can be used to create iso files.

    True or False?

    • True
    • False
  26. Question ID 530

    The dd command can be used to create large files the can be used as swap files.

    True or False?

    • True
    • False
  27. Question ID 531

    The dd command can be used to copy entire partitions.

    True or False?

    • True
    • False
  28. Question ID 532

    Which of the following is not a valid argument for the dd command?

    • count
    • in
    • if
    • bs
    • of