Last Updated on June 14, 2021 by InfraExam

DevNet Associate (Version 1.0) – DevNet Associate Module 1 Exam Answers

  1. A Linux system administrator is searching the passwd file for any username that starts with a digit. Which grep command should the administrator use?

    • grep ‘_[0-9]’ /etc/passwd
    • grep ‘[0-9]’ /etc/passwd
    • grep ‘^[0-9]’ /etc/passwd
    • grep ‘{0-9}’ /etc/passwd
  2. A student new to Python is working in the interactive interpreter mode. The student issues the command:


    Which Python expression can be used to retrieve the IP address of R2?

    • ipAddress[‘R2’]
    • ipAddress{“R2”}
    • ipAddress{‘R2’}
    • ipAddress[R2]
  3. A system administrator attempts to determine what is causing a computer to perform slower than normal. The administrator issues the ps command. What is displayed by this command?

    • current RAM usage
    • current HDD usage
    • active processes using CPU time
    • current NIC status
  4. What is the output when the following code is entered into a Python program interpreter?

    [1,2,4,5] + [3,6]
    • [1,2,3,4,5,6]
    • [1,2,4,5,3,6]
    • [21]
    • [12]+[9]
  5. A student new to Python is working in the interactive interpreter mode. The student issues the commands:


    Which data type is used to represent the variable ipAddress?

    • list
    • array
    • tuple
    • dictionary
  6. What is displayed after the following code is entered into a Python interpreter?

    addition = 22 +10
    print(addition)
    • nothing ( because the print command is wrong)
    • 32
    • [22]+[10]
    • (syntaxerror)-…as there should not be a space between the numerical values
  7. Which Python command creates a conditional control structure?

    • def
    • if
    • from
    • delay
  8. A Linux administrator is attempting to use a terminal to configure the network interface card on a computer. The administrator receives a message that the administrator does not have necessary permissions to perform the configuration. What should be done prior to the configuration command?

    • change the chmod permissions on the network configuration file
    • use a different user account
    • identify a different network interface
    • use the sudo command
  9. A user issues the Linux command ls -l myfile.sh to check the permission of the file myfile.sh.

    [email protected]:~/Documents$ ls -l myfile.sh
    -rwxr-xr– 1 self test 15 Mar 30 21:24 myfile.sh

    Which two statements describe the permissions assigned to the file? (Choose two.)

    • Any user in the test group can execute the file.
    • The user with the user ID of self can modify the file.
    • The user with the user ID of devasc can modify the file.
    • Any user in the self group can read, modify, and execute the file.
    • All users can execute the file.
      Answers Explanation & Hints:

      The ls -l command provides a “long list” format with more information that includes the following:

      File type: The hyphen (-) represents a regular file, the d represents a directory.
      File permissions: The first three letters represent the permissions of the file owner over the file, the next three letters represent the permissions of the group over the file, and the last three letters represent the permissions of others over the fie. The permission letters are as follows:

      r- read or copy the file
      w- write to the file
      x- execute the file
      hyphen (-) – no value assigned
      Number of hard links to the file: 1 in this case
      File owner, self in this case
      File group: test in this case
      File size. 15 bytes in this case

  10. A user issues a series of Linux commands as shown.

    (omitted)$ pwd
    /home/devasc/labs/ansible/backups
    (omitted)$ cd ../..

    Which directory is the current directory after the cd command is entered?

    • /
    • /home
    • /home/devasc/
    • /home/devasc/labs
    • /home/devasc/labs/ansible
  11. A user enters the commands as shown. What is the result after the mv command is entered?

    [email protected]:~/Documents$ pwd
    /home/devasc/Documents
    [email protected]:~/Documents$ mv myfile.sh ../Desktop/myfile2.sh
    • The file myfile.sh is moved to the /home/devasc/Desktop directory and renamed as myfile2.sh.
    • The file myfile.sh is copied to the /home/devasc/Desktop directory and replaces the file myfile2.sh.
    • The file myfile.sh is copied to the /home/devasc/Desktop directory and renamed as myfile2.sh.
    • The file myfile.sh is copied and renamed to myfile2.sh in the current directory.
  12. A student is learning Python in the interactive interpreter mode. The student issues the commands:

    What is the result?

    • ‘Test2’
    • ‘TestTestTestTestTestTest’
    • ‘TestTest’
    • ‘Test6’
    • TypeError: A string type cannot be multiplied by an integer.
  13. A user issues a Linux command and the result is shown:

    total 40
    drwxr-xr-x 2 devasc devasc 4096 Mar 30 21:25 Desktop
    drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Documents
    drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Downloads
    drwxr-xr-x 5 devasc devasc 4096 Mar 30 21:21 labs
    drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Music
    drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Pictures
    drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Public
    drwxr-xr-x 5 devasc devasc 4096 Mar 30 21:24 snap
    drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Templates
    drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Videos
    [email protected]:~$

    Which Linux command is used to display the contents of the current directory as shown?

    • ls -a
    • ls
    • ls -l
    • ls -lr
      Answers Explanation & Hints:

      The Linux ls command with the -l option is used to display contents in the current directory with a long list’, which provides more information about each file or subdirectory, such as permissions, owner, size, and creation date.

  14. A network engineer needs to review the status of all network interfaces of a server running a Linux operating system. The engineer enters the command ifconfig -a . What is the result of this command?

    • All active interfaces will display information.
    • The host routing table will be displayed.
    • The ARP table of the computer will be displayed.
    • Both active and inactive interfaces will display information.
  15. A system administrator issues the apt-get upgrade command on a Linux operating system. What is the purpose of this command?

    • The remote repository of applications and dependencies will be updated to the latest version.
    • A specific application named upgrade will be installed.
    • Operating system updates are downloaded and will be installed.
    • Every application installed will update itself to the latest version.
      Answers Explanation & Hints:

      When the apt-get upgrade command is issued in a Linux terminal, all installed applications will attempt to upgrade to the latest version available.

  16. A student new to Python is working in the interactive interpreter mode. The student issues the commands:

    What is the result?

    • [‘RT1’, ‘RT2’, ‘SW1’, ‘RT3’, ‘SW3’]
    • [‘RT1’, ‘RT2’, ‘RT3’, ‘SW2’, ‘SW3’]
    • [‘RT1’, ‘RT2’, ‘SW1’, ‘SW2’, ‘SW3’]
    • [‘RT1’, ‘RT2’, ‘SW2’, ‘RT3’, ‘SW3’]
  17. A student is learning Python and is reviewing a Python script as follows:

    Under which condition will the elif statement be evaluated?

    • when the input is a float number
    • when the first print statement fails
    • when the if statement is false
    • when the input is a string
3.8 4 votes
Article Rating
Subscribe
Notify of
guest
4 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments