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

Introduction to Linux I Chapter 11 Exam

Last Updated on May 20, 2021 by Admin

Introduction to Linux I Chapter 11 Exam Answer

  1. Question ID 426

    To execute a command called “simple” as a foreground process, you would type:

    • fg simple
    • simple &
    • foreground simple
    • simple
  2. Question ID 427

    The key press combination that will request a process to stop is:

    • CTRL+z
    • CTRL+p
    • CTRL+c
    • CTRL+d
  3.  

  4. Question ID 428

    The key press combination that will request a running process terminate:

    • CTRL+z
    • CTRL+d
    • CTRL+p
    • CTRL+c
  5. Question ID 429

    The main advantage of running a process in the background is:

    • The process will automatically run at a low priority
    • You can be assured that the process will not terminate early
    • The process will be logged
    • You can continue to use the shell that started the process
  6.  

  7. Question ID 430

    To see the list of background processes that you have started in your shell, you can run:

    • process
    • jobs
    • work
    • list
  8. Question ID 431

    Using the kill command always terminates processes.

    True or False?

    • True
    • False
  9. Question ID 432

    To view all processes on the system, you can execute:

    • ps –all
    • ps
    • ps -f
    • ps -e
  10.  

  11. Question ID 433

    In order to run a command called “tough” in the background, you would type:

    • start -b tough
    • tough&
    • tough@
    • bg tough
  12. Question ID 434

    If you want a background process to keep running after log out, you can use:

    • nokill
    • nohup
    • nofg
    • bg
  13. Question ID 435

    A popular program for monitoring running processes in real-time is:

    • watcher
    • mon
    • top
    • ghost
  14. Question ID 436

    To view statistics on memory availability, you can use:

    • mem
    • stat
    • free
    • uname
  15.  

  16. Question ID 437

    To send a signal to a set of processes with the same name, you can run:

    • killall
    • grpkill
    • allkill
    • sigkill
  17. Question ID 438

    The uptime command prints a statistic representing the system load over what three time spans?

    (choose three)

    • Last thirty minutes
    • Last minute
    • Last five minutes
    • Last ten minutes
    • Last fifteen minutes
    • Last hour
  18. Question ID 439

    What command can be used as a prefix to another command to run it at an altered priority?

    • low
    • chpr
    • nice
    • pri
  19. Question ID 440

    What command can be used to alter the priority of a running process?

    • repri
    • renice
    • relow
    • chpr
  20. Question ID 444

    Placing an __ character at the end of the command line will put the command in the background.

    • !
    • &
    • B
    • ?
  21. Question ID 445

    A signal is:

    • A technique to tell a process to take some sort of action
    • A command option
    • A technique to send data to a process
    • A command argument
  22. Question ID 447

    Which of the following is not a valid way to send the “force kill” signal to a process?

    • kill -KILL PID
    • kill -SIGKILL PID
    • kill -9 PID
    • kill -FORCE PID
  23. Question ID 448

    Which of the following commands will stop all processes owned by the user bob?

    (choose two)

    • killall -u bob
    • pkill -u bob
    • kill -u bob
    • kill -l
  24. Question ID 449

    To execute a command with the lowest possible priority, which value do you pass to the nice command?

    • 0
    • 20
    • -20
    • 19
  25. Question ID 450

    To execute a command with the highest possible priority, which value do you pass to the nice command?

    • -20
    • 19
    • 0
    • 20
  26. Question ID 451

    To execute a command with the default priority, which value do you pass to the nice command?

    • -20
    • 20
    • 19
    • 0
  27. Question ID 886

    The _____ command will list the commands that are running in your terminal.

    • list
    • ps
    • proc
    • ls
  28. Question ID 887

    To change the niceness value of an existing process, you can use the _____ command.

    • renice
    • set
    • reset
    • nice

  29. Question ID 888

    To see how long the system has been running, you can use the _____ command.

    • free
    • nice
    • uptime
    • ps
  30. Question ID 889

    To send a paused process to the background, use the _____ command.

    • fg
    • ps
    • bg
    • jobs
  31. Question ID 890

    To set a priority value lower than 0, you must log in as which user?

    • Any user account
    • No user can specify a priority lower than 0
    • The root user
    • The adm user
  32. Question ID 891

    To view system memory usage, you can use the _____ command.

    • uptime
    • nice
    • free
    • ps
  33. Question ID 892

    What character do you place between commands to execute multiple commands on a single command line?

    • ;
    • &
    • :
    • ~
  34. Question ID 893

    What option to the kill command will list the signals for the system?

    • -9
    • -list
    • -l
    • -r
  • 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.