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

NDG Linux Essentials 2.0 Chapter 11 Exam Online

Last Updated on May 20, 2021 by Admin

NDG Linux Essentials 2.0 Chapter 11 Exam Online

NDG -- Linux Essentials 2.0 -- Chapter 11 Exam

Time limit: 0

Quiz-summary

0 of 18 questions completed

Questions:

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18

Information

NDG — Linux Essentials 2.0 — Chapter 11 Exam

You have already completed the quiz before. Hence you can not start it again.

Quiz is loading...

You must sign in or sign up to start the quiz.

You have to finish following quiz, to start this quiz:

Results

0 of 18 questions answered correctly

Your time:

Time has elapsed

You have reached 0 of 0 points, (0)

Average score
 
 
Your score
 
 

Categories

  1. Not categorized 0%
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  1. Answered
  2. Review
  1. Question 1 of 18
    1. Question
    1 points
    A file begins with #!/bin/csh. This means:
    Correct

    Incorrect

  2. Question 2 of 18
    2. Question
    2 points

    Which are appropriate editors for writing shell scripts?
    (choose two)

    Correct

    Incorrect

  3. Question 3 of 18
    3. Question
    1 points
    Most of nano’s commands take the form of:
    Correct

    Incorrect

  4. Question 4 of 18
    4. Question
    1 points

    What does this shell script do?

    FOO=/tmp/foo
    if [ ! –d $FOO ]; then
        mkdir $FOO
    fi
    Correct

    Incorrect

  5. Question 5 of 18
    5. Question
    2 points

    Which of the following are correct about for and while loops?
    (choose two)

    Correct

    Incorrect

  6. Question 6 of 18
    6. Question
    1 points

    Given the following part of a script:

    if [ -f $1 ]; then
        echo “I am here”
    fi
    

    What is the meaning of $1?

    Correct

    Incorrect

  7. Question 7 of 18
    7. Question
    1 points

    Given the following script that is run through ./test.sh hello goodbye:

    if [ -f $2 ]; then
        echo "I am here"
    fi
    

    When will “I am here” be printed?

    Correct

    Incorrect

  8. Question 8 of 18
    8. Question
    1 points

    What is the correct way to assign the word “Hello” to a variable?

    Correct

    Incorrect

  9. Question 9 of 18
    9. Question
    1 points

    What is the correct way to save the current directory to a variable?

    Correct

    Incorrect

  10. Question 10 of 18
    10. Question
    1 points

    Which shell command accepts input from the user’s keyboard?

    Correct

    Incorrect

  11. Question 11 of 18
    11. Question
    1 points
    What information is held inside $? ?
    Correct

    Incorrect

  12. Question 12 of 18
    12. Question
    1 points

    How would you finish your script with an exit code of 42?

    Correct

    Incorrect

  13. Question 13 of 18
    13. Question
    1 points
    The if command looks for what exit code to consider a condition to be true?
    Correct

    Incorrect

  14. Question 14 of 18
    14. Question
    1 points

    The number of users logged in is in a variable called USERS. How would you test to see if 5 users are logged in?

    Correct

    Incorrect

  15. Question 15 of 18
    15. Question
    2 points

    Given the following script:

    while [ ! –f /tmp/foo ]; do
        echo –n “.”
        process_data > /tmp/foo
    done
    

    Which of the following are true?

    (choose two)

    Correct

    Incorrect

  16. Question 16 of 18
    16. Question
    1 points

    A conditional that lets you make multiple comparisons with a pattern is called:

    Correct

    Incorrect

  17. Question 17 of 18
    17. Question
    1 points
    What is the meaning of $(( $i + 1)) ?
    Correct

    Incorrect

  18. Question 18 of 18
    18. Question
    1 points

    How would you write a test that says “if /tmp/foo is a directory or USERS is greater than 5”?

    Correct

    Incorrect

  • 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.