click below
click below
Normal Size Small Size show me how
sa1 networking
| Question | Answer |
|---|---|
| A system administrator issues the apt-get upgrade command on a Linux operating system. What is the purpose of this command? | Every application installed will update itself to the latest version. |
| 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 |
| What is the output when the following code is entered into a Python program interpreter? [1,2,4,5] + [3,6] | 1,2,4,5,3,6 |
| What is displayed after the following code is entered into a Python interpreter? addition = 22 +10 print(addition) | 32 |
| 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? | use the sudo command |
| 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 resuit of this command? | Both active and inactive interfaces will display information. |
| 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? | active processes using CPU time |
| A user issues the Linux command ls -l myfile.sh to check the permission of the file myfile.sh. devasc@labvm:~/Documents$ ls -l myfile.sh -rwxr-xr-- 1 self test 15 Mar 30 21:24 myfile.sh | The user with the user ID of self can modify the file. Any user in the test group can execute the file. |
| Which Python command creates a conditional control structure? | if |
| A user enters the commands as shown. What is the result after the mv command is entered? devasc@labvm:~/Documents$ pwd /home/devasc/Documents devasc@labvm:~/Documents$ mv myfile.sh ../Desktop/myfile2.sh | The file myfile.sh is moved to the /home/devasc/Desktop directory and renamed as myfile2.sh. |
| A student new to Python is working in the interactive interpreter mode. The student issues the commands: >>> ipAddress = {"R1":"10.1.1.1","R2":"10.2.2.1","R3":"10.3.3.1"} | dictionary |
| A student new to Python is working in the interactive interpreter mode. The student issues the command: >>> ipAddress = {"R1":"10.1.1.1","R2":"10.2.2.1","R3":"10.3.3.1"} | ipAddress[‘R2’] |
| A user issues a series of Linux commands as shown. (omitted)$ pwd /home/devasc/labs/ansible/backups (omitted)$ cd ../.. | /home/devasc/labs |
| A student new to Python is working in the interactive interpreter mode. The student issues the commands: >>> devicenames=["RT1", "RT2", "SW1", "SW2"] >>> hostnames=devicenames + ["RT3", "SW3"] >>> del hostnames[3] >>> hostnames | [‘RT1’, ‘RT2’, ‘SW1’, ‘RT3’, ‘SW3’] |
| A student is learning Python in the interactive interpreter mode. The student issues the commands: >>> y=2 >>> y*3 6 >>> 'Test'*y | ‘TestTest’ |
| if aclNum >= 1 and aclNum <= 99:print("This is a standard IPv4 ACL.") elif aclNum >=100 and aclNum <= 199:print("This is an extended IPv4 ACL.") else:print("This is not a standard or extended IPv4 ACL.") | when the if statement is false |
| 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 atbp | ls -l |
| 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? | Both active and inactive interfaces will display information. |
| What is network programmability? | the ability to configure, monitor, and react to events in the network in real time |
| What is the purpose of Cisco DevNet? | to teach everyone about the different Cisco API offerings and how to use them |
| What are two benefits of using APIs and integrations between applications? (Choose two.) | Integrations are used to provide applications the ability to notify each other when a specific event happens. Integrations enable the applications to request actions from each other. |
| What is the contracted response time after a developer opens a case-based ticket with the DevNet support service? | one business day |
| Which Cisco DevNet developer support option provides 1-on-1 support to the members of the Solution Partner program? | case-based ticket |
| Which technology trend enables an industry shift towards automation, applications, and integrations? | advanced API capabilities |
| What resources are available in the Cisco DevNet sandboxes? | production-like development and code testing environments |
| Which link is used from the Cisco DevNet Learning Labs to access the largest collections of labs? | Tracks |
| Which Cisco DevNet online resource provides use cases for network automation, including listing data and activating policies across domains? | Automation Exchange |
| What are two requirements when participating in the DevNet Learning Labs? (Choose two.) | The user must successfully log in with a DevNet account. The user must have an active internet connection. |
| What are three major areas that comprise DevNet? (Choose three.) | interactive and collaborative developer community integrated community forums coordinated developer tools |
| What resources are available in the Cisco DevNet Code Exchange? | a repository of sample code written by other developers |