Skip to content
  • Home
  • CCNA Labs
    • CCNA 1 LAB Activities (v6 & v7)
    • CCNA 2 LAB Activities (v6 & v7)
    • CCNA 3 LAB Activities (v6 & v7)
    • CCNA 4 Lab Activities
  • Linux
    • Linux Unhatched
    • Linux Essentials 2.0
    • Linux Essentials
    • Introduction to Linux I
    • Introduction to Linux II
  • Programming
    • PCAP – Programming Essentials in Python
    • CLA – Programming Essentials in C
    • CPA Programming Essentials in C++
  • About
    • Contact Us
    • Privacy Policy

CCNA 7 Exam Answers 2023

Go with our CCIE, Passed 100%

  • ITE
    • ITE - IT Essentials v7.0
    • ITE - IT Essentials v6.0
      • IT Essentials Lab 2019
    • ITE v5.0 Exam
    • Virtual Activity Laptop
    • Virtual Activity Desktop
  • NE
    • MF
  • CCNA
    • CCNA1
      • CCNA1 v7.0 – ITN
      • CCNA1 v6.0
    • CCNA2
      • CCNA2 v7.0 – SRWE
      • CCNA2 v6.0
    • CCNA3
      • CCNA3 v7.0 – ENSA
      • CCNA3 v6.0
    • CCNA4
      • CCNA4 v6.0
  • Cyber-Security
    • ITC – Introduction to Cybersecurity 2.1 (Level 1)
    • CE – Cybersecurity Essentials 1.1 (Level 2)
    • CCNA CyberOps 1.1 (Level 3)
  • Security
    • CCNA Security v2
  • DevNet
  • CCNA PT Lab 2023

Linux Essentials 2.0 Chapter 16 Exam Answers

Last Updated on May 20, 2021 by Admin

NDG Linux Essentials 2.0 Chapter 16 Exam Answers

  1. UIDs 1-499 are usually reserved for what kind of users?

    • Remote log-in accounts
    • Are not used for user accounts, but for group accounts
    • System accounts, such as server processes
    • Log-in (human) users
  2. If a user is deleted, the files and directories that the user owned…

    • …will have no user owner.
    • …will have no UID owner.
    • …will show a UID as the owner, but not user name.
    • …are deleted as well.
  3. Which of the following options for the useradd command allows root to specify the UID to be associated with the account?

    • -g
    • -G
    • -u
    • -M
  4. Which of the following options for the useradd command allows root to specify supplementary groups the user will be a member of?

    • -G
    • -u
    • -g
    • -U
  5. On a system that does not use UPG, the useradd command will also create a user group. For example, user bob, group bob.

    True or False?

    • True
    • False
  6. Which of the following commands will add the group extra to the user bob‘s secondary groups in addition to bob‘s current secondary groups?

    • usermod -G extra bob
    • usermod -ag bob extra
    • usermod -aG extra bob
    • usermod -a extra bob
  7. Which option for the usermod command can be used to specify a user’s group ID (either primary or secondary)?

    (choose two)

    • -s
    • -g
    • -S
    • -G
  8. For non-root users, the passwd command can only be used to change the password of the user running the command.

    True or False?

    • True
    • False
  9. The groupmod command can be used to change a group name.

    True or False?

    • True
    • False
  10. The groupmod command can be used to change a group GID.

    True or False?

    • True
    • False
  11. The groupmod command can be used to add users to a group.

    True or False?

    • True
    • False
  12. Which of the following commands can be used to modify a group?

    • groupmod
    • groupadd
    • modgroup
    • addgroup
  13. Which command can be used to determine a user’s most recent log in?

    • history
    • last
    • login
    • shell
  14. Which of the following files contains encrypted user password information?

    • /etc/usr
    • /etc/group
    • /etc/passwd
    • /etc/shadow
  15. Which of the following files contains user IDs?

    • /etc/group
    • /etc/passwd
    • /etc/usr
    • /etc/shadow
  16. Which of the following files does the groupadd command use to determine the new GID when a GID isn’t specified?

    • /etc/usr
    • /etc/shadow
    • /etc/passwd
    • /etc/group
  17. Which of the following commands, run as root, will prevent the user bob from logging in?

    • usermod -L bob
    • usermod -l bob
    • usermod -D bob
    • usermod -d bob
  18. What directory contains a user’s home directory?

    • /user
    • /
    • /home
    • /rootfs
  19. GIDs under 500 (or 1000) are usually reserved for what kind of groups?

    • System use
    • Are not used for groups, but for user accounts
    • Administrators
    • User private groups (UPG)
  20. If a user is deleted, the files and directories that the user owned…

    • …are deleted as well.
    • …will have no user owner.
    • …may be important for others in the organization
    • …will have no UID owner.
  21. Which of the following options for the useradd command allows you to use a different primary group then the default?

    • -g
    • -G
    • -U
    • -u
  22. On a system that uses UPG, the UID must not be the same as the GID..

    True or False?

    • True
    • False
  23. The usermod command can be used to unlock a users account with the following option.

    • -s
    • -u
    • -f
    • -U
  24. Which of the following options for the useradd command allows you to use a different login shell than the default?

    • -g
    • -s
    • -u
    • -U
  25. Which of the following commands will add the group extra to the user jane’s secondary groups in addition to jane‘s current secondary groups?

    • usermod -a extra jane
    • usermod -ag jane extra
    • usermod -aG extra jane
    • usermod -G extra jane
  26. Which option for the usermod command can be used to specify a user’s primary group ID?

    • -g
    • -S
    • -G
    • -s
  27. For root users, the passwd command can only be used to change the password of the user running the command.

    True or False?

    • True
    • False
  28. The userdel -r command will…

    • …will prompt before deleting each file owned by a user.
    • …delete the user account, but leave the user’s files by default.
    • …automatically delete a user and the user’s home directory and mail spool and their contents.
    • …automatically delete a user and all the files owned by that user.
  29. The groupmod command can be used to change a group name.

    True or False?

    • True
    • False
  30. The groupmod command cannot be used to change a group GID.

    True or False?

    • True
    • Fasle
  31. The groupdel command can be used to delete primary groups.

    True or False?

    • True
    • Fasle
  32. Which of the following commands can be used to modify a user?

    • adduser
    • moduser
    • useradd
    • usermod
  33. Which command can be used to determine a user’s most recent log in?

    • history
    • shell
    • login
    • last
  34. The /etc/passwd file contains encrypted user password information. True or False?

    True or False?

    • False
    • True
  35. Which of the following files contains group IDs?

    • /etc/passwd
    • /etc/usr
    • /etc/shadow
    • /etc/group
  36. Which command allows you to view or change some of the default values used by the useradd command?

    • useradd -D
    • useradd -r
    • modvalue
    • useradd -f
  37. Which of the following commands, run as root, will prevent the user jane from logging in?

    • usermod -d jane
    • usermod -D jane
    • usermod -L jane
    • usermod -l jane
  • CCNA1 v7
  • CCNA2 v7
  • CCNA3 v7
System Test Exam Answers
Modules 1 – 3 Exam Answers
Modules 4 – 7 Exam Answers
Modules 8 – 10 Exam Answers
Modules 11 – 13 Exam Answers
Modules 14 – 15 Exam Answers
Modules 16 – 17 Exam Answers
Practice Final – ITN Answers
Course Feedback
ITN Practice PT Skills Assessment (PTSA)
Final Exam Answers
Modules 1 – 4 Exam Answers
Modules 5 – 6 Exam Answers
Modules 7 – 9 Exam Answers
Modules 10 – 13 Exam Answers
Modules 14 – 16 Exam Answers
ITN Practice Skills Assessment – PT Answers
SRWE Practice Skills Assessment – PT Part 1 Answers
SRWE Practice Skills Assessment – PT Part 2 Answers
SRWE Hands On Skills Exam Answers
SRWE Practice Final Exam Answers
SRWE Final Exam Answers 
Modules 1 – 2 Exam Answers
Modules 3 – 5 Exam Answers
Modules 6 – 8 Exam Answers
Modules 9 – 12 Exam Answers
Modules 13 – 14 Exam Answers
ITN Practice PT Skills Assessment (PTSA) Answers
SRWE Practice PT Skills Assessment (PTSA) – Part 1 Answers
SRWE Practice PT Skills Assessment (PTSA) – Part 2 Answers
ENSA Practice PT Skills Assessment (PTSA) Answers
ENSA Hands On Skills Exam Answers
Practice Final – ENSA Answers
ENSA Final Exam Answers
CCNA Certification Practice Exam Answers

Copyright © 2023 PressExam.