1/99
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Which Python programming function is used to display output?
if
while
for
Print is used to display output in a Python programing language interpreter.
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
Which two statements describe the permissions assigned to the file? (Choose two.)
Any user in the self group can read, modify, and 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.
All users can execute the file.
Any user in the test group can execute the file.
The user with the user ID of self can modify the file.
Any user in the test group can execute the file.
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 filew- write to the filex- execute the filehyphen (-) - no value assignedNumber of hard links to the file: 1 in this caseFile owner, self in this caseFile group: test in this caseFile size. 15 bytes in this case
Which Python command creates a conditional control structure?
def
delay
from
if
if
What Linux command is used to display the contents of the current directory?
pwd
cat
ln
ls
ls
The Linux ls command, without any options, is used to display the contents, such as files and subdirectories, of the current directory.
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
/home/devasc/labs
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"}
Which Python expression can be used to retrieve the IP address of R2?
ipAddress{'R2'}
ipAddress['R2']
ipAddress[R2]
ipAddress{"R2"}
ipAddress['R2']
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
grep '^[0-9]' /etc/passwd
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
What is the result?
['RT1', 'RT2', 'RT3', 'SW2, 'SW3']
['RT1', 'RT2', 'SW2', 'RT3', 'SW3']
['RT1', 'RT2', 'SW1', 'RT3', 'SW3']
['RT1', 'RT2', 'SW1', 'SW2', 'SW3']
['RT1', 'RT2', 'SW1', 'RT3', 'SW3']
A user issues a Linux command and the result is shown.
total 40
drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Videos
drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Templates
drwxr-xr-x 5 devasc devasc 4096 Mar 30 21:24 snap drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Public
drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Pictures
drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Music
drwxr-xr-x 5 devasc devasc 4096 Mar 30 21:21 labs
drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Downloads
drwxr-xr-x 2 devasc devasc 4096 Apr 15 19:09 Documents
drwxr-xr-x 2 devasc devasc 4096 Mar 30 21:25 Desktop devasc@labvm:~$
Which Linux command is used to display the contents of the current directory as shown?
ls -l
ls -a
ls -lr
ls -lr
The Linux ls command with the -l option is used to display contents in the current directory as a "long list". By default, the listing is sorted alphabetically. With both the -l and -r options specified, the listing is displayed as a long list and in reverse order.
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
devasc@labvm:~$
Which Linux command is used to display the contents of the current directory as shown?
Group of answer choices
ls -a
ls -lr
ls -l
ls
ls -l
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.
A student is learning Python using the interactive interpreter mode. The student issues the commands:
>>> routers=[]
>>> switches=[]
>>> devices=[\"RT1\", \"RT2\", \"RT3\", SW1\", \"SW2\", \"SW3\"]
>>> devices=devices + [\"RT4\", \"SW4\"]
>>> for i in devices:
if \"R\" in i:
routers.append(i)
else: switches.append(i)
>>> switches
What is the result?
['SW4', 'SW3', 'SW2', 'SW1']
['SW1', 'SW2', 'SW3']
['SW4', 'SW1', 'SW2', 'SW3']
['SW4']
['SW1', 'SW2', 'SW3', 'SW4']
['SW1', 'SW2', 'SW3', 'SW4']
In Python, two lists can be concatenated by using the + (plus sign) operator. The second list appends to the first list and makes a new list. The Python for function is used to loop through the elements in a list and perform an operation on an element. The if statement can be used within the for function to determine the proper action based on the matching condition of each element.
A student is learning Python and is reviewing a Python script as follows:
aclNum = int(input("What is the IPv4 ACL number? "))
if aclNum >= 1 and aclNum
when the if statement is false
A system administrator of a Linux server is searching the passwd file for the username taylor that appears at the beginning of the line. Which grep command should the administrator use?
Group of answer choices
grep '^taylor' /etc/passwd
grep '.taylor' /etc/passwd
grep taylor /etc/passwd
grep '[taylor]' /etc/passwd
grep '^taylor' /etc/passwd
The Linux grep command can be used to process text line by line and to print any lines which match a specified pattern. The matching patterns are based on regular expression (regex) query modifiers used to select the appropriate content. Some regex query modifiers are as follows:(underscore): matches a space^ (caret): indicates the start of a string$ (dollar sign): indicates the end of a string. (period): matches a single character, including a space(asterisk): matches zero or more occurrences of the preceding character(square bracket): matches a character{ } (curly bracket): repeats preceding character
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
Group of answer choices
The file myfile.sh is copied to the /home/devasc/Desktop directory and replaces the file myfile2.sh.
The file myfile.sh is copied and renamed to myfile2.sh in the current directory.
The file myfile.sh is copied to the /home/devasc/Desktop directory and renamed as myfile2.sh.
The file myfile.sh is moved to the /home/devasc/Desktop directory and renamed as myfile2.sh.
The file myfile.sh is moved to the /home/devasc/Desktop directory and renamed as myfile2.sh.
A system administrator issues the apt-get upgrade command on a Linux operating system. What is the purpose of this command?
Group of answer choices
A specific application named upgrade will be installed.
The remote repository of applications and dependencies will be updated to the latest version.
Operating system updates are downloaded and will be installed.
Every application installed will update itself to the latest version.
Every application installed will update itself to the latest version.
When the apt-get upgrade command is isued in a Linux terminal, all installed applications will attempt to upgrade to the latest version available.
What is displayed after the following code is entered into a Python interpreter?
addition = 22 +10
print(addition)
Group of answer choices
32
(syntaxerror)-...as there should not be a space between the numerical values
nothing ( because the print command is wrong)
[22]+[10]
32
The Python interpreter will perform the operation and display the result, 32.
A student is learning Python in the interactive interpreter mode. The student issues the commands:
>>> y=2
>>> y*3
6
>>> 'Test'*y
What is the result?
Group of answer choices
'TestTestTestTestTestTest'
'Test2
'Test6'
TypeError: A string type cannot be multiplied by an integer.
'TestTest'
'TestTest'
What command is used to rename a file in a Linux system?
Group of answer choices
cp
mv
dd
rm
mv
The mv Linux command can be used to move a file to another directory or rename a file. The cp command is used to make a copy of files or directories. The dd command is also used to make a copy of a file. The rm command is used to delete a file.
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?
Group of answer choices
All active interfaces will display information.
The ARP table of the computer will be displayed.
The host routing table will be displayed.
Both active and inactive interfaces will display information.
Both active and inactive interfaces will display information.
What is the output when the following code is entered into a Python program interpreter?
[1,2,4,5] + [3,6]
Group of answer choices
[1,2,4,5,3,6]
[21]
[1,2,3,4,5,6]
[12]+[9]
[1,2,4,5,3,6]
The Python interpreter performs concatenation of two lists without reordering the list elements
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?
Group of answer choices
current NIC status
current RAM usage
current HDD usage
active processes using CPU time
active processes using CPU time
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"}
Which data type is used to represent the variable ipAddress?
Group of answer choices
list
dictionary
array
tuple
dictionary
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?
Group of answer choices
The ARP table of the computer will be displayed.
Both active and inactive interfaces will display information.
The host routing table will be displayed.
All active interfaces will display information.
Both active and inactive interfaces will display information.
A developer needs to check the version of the running Python package. Which command should the developer use?
Group of answer choices
python3 -q
python3 -V
python3 -i
python3 -v
python3 -V
The command python3 starts Python, but adding the -V option displays the specific version being used.
A student is learning Python in the interactive interpreter mode. The student issues the commands:
>>> devicenames=[\"RT1\", \"RT2\", \"SW1\", \"SW2\"]
>>> devicenames[-1]
What is the result?
Group of answer choices
SW2
RT1
an error message
['RT2', 'SW1', 'SW2']
SW1
SW2
In Python, an item in a list can be referenced and manipulated using its index. The first item in a list is indexed as zero, the second is indexed as one, and so on. The last item can also be referenced with an index of [-1].
A student is learning Python in the interactive interpreter mode. The student issues the command:
>>> type(True)
What is the data type reported by Python?
Group of answer choices
Boolean
integer
float
string
Boolean
A type of True or False is a predefined value of the Boolean data type.
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?
Group of answer choices
identify a different network interface
use a different user account
use the sudo command
change the chmod permissions on the network configuration file
use the sudo command
A user issues the apt-get upgrade command to update system files in a Ubuntu Linux system and receives an error message of "permission denied." What should the user do to complete the task?
Group of answer choices
Issue the allow apt-get upgrade command.
Issue the sudo apt-get install command.
Issue the sudo apt-get upgrade command.
Issue the apt-get install -allow command.
Issue the sudo apt-get upgrade command.
There are several Linux commands in the Advanced Package Tool (APT) system to perform software package management tasks. The apt-get upgrade command is used to update all packages and dependencies on the system. This command must be run with administrative level permissions, which are provided by the sudo command.
What type of learner should take the DevNet Associate course?
anyone that does not like working in teams and is a software developer
anyone interested in network automation and programmability
only new network engineers
only new software developers
anyone interested in network automation and programmability
What is the purpose of Cisco DevNet?
Group of answer choices
to be the central resource for advanced software developers and the use of Cisco APIs
to be the central resource for everything about networking at Cisco
to teach everyone about the different Cisco API offerings and how to use them
to teach specific coding courses such as advanced Python and implementing REST APIs
to teach everyone about the different Cisco API offerings and how to use them
What is contained within a DevNet Sandbox?
Group of answer choices
instructor-led videos focusing on hands-on exercises
a collection of Cisco developer API documentation
a preconfigured environment already installed with Cisco platforms
a collection of self-paced tutorials using REST APIs
a preconfigured environment already installed with Cisco platforms
What is a requirement when creating a Cisco DevNet account for accessing educational resources, such as Learning Labs and the DevNet Sandbox?
Group of answer choices
The account holder must share personally created code before access is allowed.
The account must be created using an existing online identity or via a new Cisco account.
The account must be registered using a Cisco email address.
The account must contain a purchased license.
The account must be created using an existing online identity or via a new Cisco account.
What are three major areas that comprise DevNet? (Choose three.)
Group of answer choices
providing support for website creation and maintenance
automation and programmability standards development area
coordinated developer tools
on-line training site for various technology vendors
interactive and collaborative developer community
integrated community forums
interactive and collaborative developer community
integrated community forums
coordinated developer tools
DevNet is a fully-integrated developer program consisting of a website, an interactive developer community, coordinated developer tools, integrated community forums, and sandboxes.
Which DevNet event is provided by Cisco partners and Cisco offices?
Group of answer choices
DevNet Hackathon
DevNet Codearama
DevNet Express
DevNet Learn In
DevNet Express
DevNet Express events are organized and offered by Cisco partners and Cisco local offices.
What is the contracted response time after a developer opens a case-based ticket with the DevNet support service?
Group of answer choices
five business days
one business day
one week
one hour
one business day
What is required in order to ensure that clients are able to talk to applications that are outside a local system?
Group of answer choices
an API
a network
a script
an application
a network
Without a network, clients are unable to talk to applications that are outside the local system.
What resources are available in the Cisco DevNet Code Exchange?
Group of answer choices
self-paced tutorials that cover a wide range of automation and integration topics
a repository of sample code written by other developers
production-like development and code testing environments
support for developer-related issues using forums and live chats
a repository of sample code written by other developers
Which website provides the entry point for Cisco DevNet?
Group of answer choices
cisco.com
developer.cisco.com
talosintelligence.com
devnet.com
developer.cisco.com
The Cisco DevNet website of developer.cisco.com is the central resource for all the Cisco developer tools and documentation.
Which Cisco DevNet developer support option provides 1-on-1 support to the members of the Solution Partner program?
Group of answer choices
case-based ticket
knowledge base
community forum
chat with DevNet
case-based ticket
What are two requirements when participating in the DevNet Learning Labs? (Choose two.)
Group of answer choices
The user must have an active internet connection.
The user must have purchased the DevNet Learning Labs activation license.
The user must install a developer environment on a local computer.
The user must have successfully passed the 200-901 DEVASC exam.
The user must successfully log in with a DevNet account.
The user must have an active internet connection.
The user must successfully log in with a DevNet account.
What are two benefits of using APIs and integrations between applications? (Choose two.)
Group of answer choices
Integrations are used to provide applications the ability to notify each other when a specific event happens.
Integrations enable the applications to be installed on any operating system type.
Integrations enable the applications to request actions from each other.
Integrations are used to verify compatibility between different applications.
Integrations enable the applications to run a Docker instance using Hyper-V.
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.
Integrations buld a network between multple applications. This allows the applications to share deta, request actions to be performed, or even notity each other when a specific event happens.
Which technology trend enables an industry shift towards automation, applications, and integrations?
Group of answer choices
increased intenet connection bandwidth
increased storage and RAM
advanced API capabilities
smaller and faster CPUs
advanced API capabilities
APIs, known as application programming interfaces, are causing a shift in the IT industry through the replacement of repetitive manual tasks with automation.
Which two DevNet resources are available online? (Choose two.)
Group of answer choices
Code Exchange
DevNet Zone
Automation Exchange
API Tokens
Python Exchange
Code Exchange
Automation Exchange
There are two DevNet resources that are available online 24 hours a day, 7 days a week: Code Exchange and Automation Exchange.
What resources are available in the Cisco DevNet sandboxes?
Group of answer choices
self-paced tutorials that cover a wide range of automation and integration topics
a repository of sample code writen by developers
support for developer-related issues through the use of forums and live chats
production-like development and code testing environments
production-like development and code testing environments
What is Cisco DevNet?
Group of answer choices
a developer program
a way to create networks using software alone
a Cisco-proprietary virtual network
a vendor-neutral type of virtual networking
a developer program
Cisco DevNet is a developer program that includes online resources, an interactive developer community, developer tools, discussion forums, learning labs, and a production-like development and testing sandbox environment.
What is network programmability?
Group of answer choices
the ability to configure, monitor, and react to events in the network in real time
the ability to program network devices using repettive manual configuration via a terminal and command sets
the ability to configure virtualized networks and deploy virtualized services in real time
the ability to easily monitor network devices using traditional network protocols
the ability to configure, monitor, and react to events in the network in real time
What is the purpose of the Cisco DevNet Learning Labs?
Group of answer choices
They allow participants to add their own labs as long as the labs relate to any type of coding.
They provide self-paced tutorials including coding.
They allow participants to add their own Python labs.
They provide a space for game development, interaction, and learning based on coding.
They provide self-paced tutorials including coding.
Which link is used from the Cisco DevNet Learning Labs to access the largest collections of labs?
Group of answer choices
Tracks
Sections
Bookends
Modules
Tracks
Which Cisco DevNet online resource provides use cases for network automation, including listing data and activating policies across domains?
Group of answer choices
Code Exchange
DevNet Sandbox
DevNet Learning Labs
Automation Exchange
Automation Exchange
The Automation Exchange provides various use cases for network automation.Listing dataAdding configurationsActivating policies across domainsActivating policies across usersActivating policies across devices
Which DevNet resource would a developer use if the developer is using a Cisco API and needs help understanding the error message received?
Group of answer choices
DevNet Support
DevNet Sandbox
Code Exchange
DevNet Learning Labs
DevNet Support
DevNet support provides multiple ways to support developers using Cisco APIs. There are community forums, knowledge bases, Webex Teams, and case-based tickets for a fee.
Python is a ______ language.
Group of answer choices
Assembly
High-level
Low-level
Machine
High-level
What symbol is used to define a dictionary in Python?
Group of answer choices
()
<>
[]
{}
{}
Which of the following is required to run a virtual machine?
Group of answer choices
A modern computer and OS
A smartphone
A web browser
None of the above
A modern computer and OS
What Python statement is used for decision-making?
Group of answer choices
if
while
def
for
if
Python is described as:
Group of answer choices
Only used for mobile apps
Free, open, and multiplatform
Only used for gaming
A proprietary language
Free, open, and multiplatform
Linux command to change file permissions:
Group of answer choices
cd
ls
pwd
chmod
chmod
Which of these is an integrated development environment (IDE) mentioned?
Group of answer choices
Chrome
Excel
Word
VS Code
VS Code
What is recommended if you struggled with the Linux Review Lab?
Group of answer choices
Skip Linux topics
Retake the DEVASC course
Start Python Essentials directly
Take the Linux Unhatched course
Take the Linux Unhatched course
Which command is used to create an empty file in Linux?
Group of answer choices
cat
ls
touch
mkdir
touch
Which Python data structure stores key-value pairs?
Group of answer choices
Tuple
List
Dictionary
Array
dictionary
Which Linux command is used to change directories?
Group of answer choices
cd
chmod
ls
ps
cd
The Python for loop is best used for:
Group of answer choices
Conditional branching
Iterating over a sequence
Infinite repetition
File access
Iterating over a sequence
The DEVASC course prepares learners for:
Group of answer choices
Network automation and programmability
Cloud gaming
Mobile app development
Basic PC repair
Network automation and programmability
Which two labs help you prepare for DEVASC?
Group of answer choices
API Lab & Networking Lab
GitHub Lab & Docker Lab
Python Lab & Linux Lab
Cloud Lab & DevOps Lab
Python Lab & Linux Lab
Which of these is a Linux command to list files?
Group of answer choices
cd
ls
pwd
mkdir
ls
Webex Teams installation is part of which lab?
Group of answer choices
GitHub Setup
Linux Unhatched
Virtual Lab Environment
Python Essentials
Virtual Lab Environment
What does VM stand for?
Group of answer choices
Virtual Module
Virtual Management
Virtual Model
Virtual Machine
Virtual Machine
Which keyword is used to define a function in Python?
Group of answer choices
method
def
return
func
def
In Python, which function displays output?
Group of answer choices
print()
show()
output()
display()
print()
Which Linux command modifies file permissions?
Group of answer choices
mkdir
pwd
ps
chmod
chmod
Which lab includes system administration tasks?
Group of answer choices
API Lab
Python Lab
Linux Review Lab
Network Lab
Linux Review Lab
Which Python structure is immutable?
Group of answer choices
Set
Dictionary
List
Tuple
Tuple
Which free online course is suggested if you struggle with Python?
Group of answer choices
Python Essentials
Webex Essentials
DevNet Sandbox
Linux Essentials
Python Essentials
Python is considered a good starting language because:
Group of answer choices
It is complex and detailed
It only works on Windows
It is expensive to use
It is easy to learn, use, and install
It is easy to learn, use, and install
Which command shows running processes in Linux?
Group of answer choices
mkdir
cat
chmod
ps
ps
DevNet forums are located at:
Group of answer choices
facebook.com/cisco
github.com/devnet
dockerhub.com/cisco
devnetsupport.cisco.com
devnetsupport.cisco.com
What is the primary objective of Module 2?
Group of answer choices
Review networking protocols
Implement a development environment using DevNet resources
Learn Python programming
Configure Cisco routers manually
Implement a development environment using DevNet resources
DevNet Learning Labs include tutorials on:
Group of answer choices
Hardware assembly
Video gaming
Microsoft Office
Networking, IoT, Python, REST APIs
Networking, IoT, Python, REST APIs
DevNet Learning Labs tutorials may include topics such as:
Group of answer choices
Gaming software installation
Hardware wiring guides
Browser extensions
REST APIs, Python, and model-driven programmability
REST APIs, Python, and model-driven programmability
Which DevNet Exchange is best for finding automation use cases in networking?
Group of answer choices
Code Exchange
Automation Exchange
Ecosystem Exchange
Linux Exchange
Automation Exchange
Which is an example of getting DevNet support?
Group of answer choices
Subscribing to DevNet YouTube only
Calling a Cisco sales rep
Visiting a physical Cisco office
Logging a support ticket online
Logging a support ticket online
Which of the following is part of DevNet Developer Support?
Group of answer choices
Docker Hub
Knowledge Base
Linux kernel repository
Game server
Knowledge Base
Which of the following is NOT a feature of DevNet?
Group of answer choices
Sandboxes
Learning Labs
Code Exchange
Hardware simulation software
Hardware simulation software
Which resource mimics the overall DevNet site for training?
Group of answer choices
Ecosystem Exchange
Automation Exchange
Cisco Packet Tracer
DevNet Learning Labs
DevNet Learning Labs
Which DevNet Exchange provides automation use cases and toolkits?
Group of answer choices
Lab Exchange
Code Exchange
Automation Exchange
Ecosystem Exchange
Automation Exchange
Which DevNet Exchange uses human moderators and GitHub APIs?
Group of answer choices
Ecosystem Exchange
Code Exchange
Developer Support
Automation Exchange
Code Exchange
Which DevNet resource is a repository of sample code?
Group of answer choices
Ecosystem Exchange
Automation Exchange
Code Exchange
Learning Labs
Code Exchange
DevNet forums are primarily for:
Group of answer choices
File hosting
Developer community collaboration and support
Buying Cisco licenses
Selling routers
Developer community collaboration and support
Which DevNet Exchange is most likely to help in designing solutions with partners?
Group of answer choices
Code Exchange
Sandbox
Automation Exchange
Ecosystem Exchange
Ecosystem Exchange
DevNet community interaction is mainly supported through:
Group of answer choices
Email only
Local events only
Phone calls
Forums, chat, and community spaces
Forums, chat, and community spaces
Which DevNet Exchange provides solutions across geographies and industries?
Group of answer choices
Ecosystem Exchange
Automation Exchange
Code Exchange
Community Exchange
Ecosystem Exchange
Which DevNet lab activity is included in Module 2?
Group of answer choices
Python Review Lab
Linux Review Lab
Explore DevNet Resources
Install Webex Teams
Explore DevNet Resources
Which DevNet feature provides self-paced tutorials?
Group of answer choices
Learning Labs
Ecosystem Exchange
Code Exchange
Developer Support
Learning Labs
DevNet developer program integrates which of the following?
Group of answer choices
Website, tools, sandboxes, forums, documentation
Virtual gaming environments
Linux-only training
Cisco router sales
Website, tools, sandboxes, forums, documentation
Which online resource provides API documentation for developers?
Group of answer choices
Webex Teams
DevNet Home page at developer.cisco.com
Cisco Press
DevNet TV
DevNet Home page at developer.cisco.com
DevNet Exchange that uses GitHub API is:
Group of answer choices
Learning Labs
Automation Exchange
Ecosystem Exchange
Code Exchange
Code Exchange
A developer can troubleshoot API issues in DevNet by:
Group of answer choices
Buying a Cisco router
Using DevNet Developer Support
Installing Windows updates
Reading only Linux manuals
Using DevNet Developer Support
What is the purpose of DevNet Sandboxes?
Group of answer choices
Provide hands-on exploration of software and APIs
Virtualize video games
Sell Cisco devices
Build physical networking labs
Provide hands-on exploration of software and APIs
DevNet Sandboxes are best described as:
Group of answer choices
Cloud-only virtual labs
Cisco's gaming platform
Production-like environments for testing and development
A place to store hardware devices
Production-like environments for testing and development
Which DevNet Exchange is directly tied to sharing automation scripts?
Group of answer choices
Code Exchange
Ecosystem Exchange
Automation Exchange
DevNet TV
Automation Exchange