ExamGecko
Home Home / Cisco / 200-901

Cisco 200-901 Practice Test - Questions Answers, Page 47

Question list
Search
Search

List of questions

Search

An engineer must run tests on several Cisco controllers. Due to the nature of the task, the infrastructure must be running at all times and have access to APIs. Which Cisco DevNet source must the engineer use?

A.

DevNet Learning Labs

A.

DevNet Learning Labs

Answers
B.

DevNet Code Exchange

B.

DevNet Code Exchange

Answers
C.

DevNet Sandbox

C.

DevNet Sandbox

Answers
D.

DevNet API documentation

D.

DevNet API documentation

Answers
Suggested answer: C

Explanation:

The Cisco DevNet Sandbox provides a virtual environment where engineers and developers can access and run tests on various Cisco controllers and infrastructure components. This service offers always-on and reservation-based sandboxes that simulate real-world environments.

DevNet Sandbox: The Sandbox offers various environments with preconfigured Cisco devices and APIs, allowing engineers to run tests and develop solutions without affecting live systems.

Always-On Sandboxes: These environments are always available and can be used without reservation.

API Access: The Sandbox environments include access to APIs, enabling comprehensive testing and integration.

Cisco DevNet Sandbox: DevNet Sandbox

What does a developer import in a script to parse a file from XML to Python?

A.

function

A.

function

Answers
B.

library

B.

library

Answers
C.

variable

C.

variable

Answers
D.

method

D.

method

Answers
Suggested answer: B

Explanation:

To parse XML data in Python, a developer typically imports a library that provides the necessary functions and methods for XML parsing.

Libraries for XML Parsing: Python has several libraries for parsing XML, such as xml.etree.ElementTree, lxml, and minidom.

Functionality: These libraries offer functions and methods to read, manipulate, and extract data from XML files.

Example:

import xml.etree.ElementTree as ET

tree = ET.parse('file.xml')

root = tree.getroot()

Python XML Parsing: Python XML Documentat

Refer to the exhibit.

Which API is called when the REMOTE TU sends a TCONNECT Response to the LOCAL TU?

A.

TCONNECT completion

A.

TCONNECT completion

Answers
B.

TCONNECT request

B.

TCONNECT request

Answers
C.

TCONNECT indication

C.

TCONNECT indication

Answers
D.

TCONNECT confirm

D.

TCONNECT confirm

Answers
Suggested answer: D

Explanation:

The TCONNECT protocol is part of the OSI transport layer, where TCONNECT confirm is the API called when the remote transport user (TU) responds to a connection request from the local TU.

TCONNECT confirm: This is the final step in establishing a transport connection, where the remote TU confirms the connection request from the local TU.

Sequence: The sequence typically involves TCONNECT request, TCONNECT indication, TCONNECT response, and finally TCONNECT confirm.

OSI Transport Protocols: OSI Transport Layer

Which network component enables communication between broadcast domains?

A.

load balancer

A.

load balancer

Answers
B.

switch

B.

switch

Answers
C.

router

C.

router

Answers
D.

firewall

D.

firewall

Answers
Suggested answer: C

Explanation:

A router is a network component that enables communication between different broadcast domains by forwarding data packets between them based on their IP addresses.

Broadcast Domains: A broadcast domain is a network segment where a broadcast frame is forwarded to all devices.

Router Function: Routers separate broadcast domains, allowing communication between them by routing packets based on their destination IP addresses.

Network Components: Routers and Broadcast Domains

Refer to the exhibit.

The server.js Node.js script runs after the Dockerfile creates its container. What is the working directory of the application inside the container?

A.

/source

A.

/source

Answers
B.

/app

B.

/app

Answers
C.

/app/source

C.

/app/source

Answers
D.

/app/produclion

D.

/app/produclion

Answers
Suggested answer: B

Explanation:

In the given Dockerfile, the WORKDIR /app command sets the working directory for any subsequent commands to /app. This means that any commands following this line will be executed within the /app directory inside the Docker container. The COPY . . command copies the contents of the current directory on the host machine to the /app directory in the container. Finally, the CMD ['node', 'source/server.js'] command specifies the command to run when the container starts, which in this case is node source/server.js.

Dockerfile Reference - WORKDIR

What is a capability of Cisco Webex?

A.

Join preconfigured or new spaces with fixed user rights.

A.

Join preconfigured or new spaces with fixed user rights.

Answers
B.

Configure devices at scale via automation scripts or by manual execution.

B.

Configure devices at scale via automation scripts or by manual execution.

Answers
C.

Initiate or respond to calls automatically via automation.

C.

Initiate or respond to calls automatically via automation.

Answers
D.

Get space history or notified in real time when new messages are posted.

D.

Get space history or notified in real time when new messages are posted.

Answers
Suggested answer: D

Explanation:

Cisco Webex offers a range of collaboration capabilities, including real-time messaging, video conferencing, and integration with various productivity tools. Specifically, Webex allows users to:

Get Space History: Users can retrieve historical messages and files shared within a space, ensuring they have access to all past communications and documents.

Real-Time Notifications: Webex provides notifications when new messages are posted in spaces, allowing users to stay updated with ongoing conversations and respond promptly.

These features enhance the collaborative experience by ensuring users can keep track of conversations and receive timely updates.

Cisco Webex Features

Refer to the exhibit.

A developer uses a REST API to retrieve information about wireless access points. The API returns an HTTP 403 error when making a GET request. Which ion resolves this Issue?

A.

Provide the developer with the correct user access rights.

A.

Provide the developer with the correct user access rights.

Answers
B.

Change the request HTTP method from GET to POST.

B.

Change the request HTTP method from GET to POST.

Answers
C.

Change the request timeout in the client software.

C.

Change the request timeout in the client software.

Answers
D.

Include a username/password request header.

D.

Include a username/password request header.

Answers
Suggested answer: A

Explanation:

An HTTP 403 Forbidden error indicates that the server understands the request but refuses to authorize it. This often occurs when the user making the request does not have the necessary permissions to access the resource.

To resolve this issue:

Correct User Access Rights: Ensure that the developer has the appropriate permissions to access the API endpoint. This typically involves verifying the user's roles and permissions within the system or application being accessed.

HTTP 403 Forbidden Error - MDN Web Docs

A developer starts to learn about building applications that use Cisco APIs. The developer needs access to Cisco security products in a development lab to test the first new Dlication that has been built. Which DevNet resource must be used?

A.

DevNet Code Exchange

A.

DevNet Code Exchange

Answers
B.

DevNet Automation Exchange

B.

DevNet Automation Exchange

Answers
C.

DevNet Sandbox

C.

DevNet Sandbox

Answers
D.

DevNet Communities

D.

DevNet Communities

Answers
Suggested answer: C

Explanation:

Cisco DevNet Sandbox provides developers with access to a variety of Cisco technologies in a lab environment. It is an essential resource for developers who want to test and build applications using Cisco APIs and products.

DevNet Sandbox: This platform offers pre-configured, ready-to-use environments that allow developers to experiment with Cisco products, including security products, without the need to set up and configure their own infrastructure.

Cisco DevNet Sandbox

eating a Python script to programmatically save network device configurations. Which code snippet must be placed onto the blank in .. code?

A.

self.save

A.

self.save

Answers
B.

{self.headers}

B.

{self.headers}

Answers
C.

restconf

C.

restconf

Answers
D.

netconf

D.

netconf

Answers
Suggested answer: C

Explanation:

The provided Python script is designed to use the RESTCONF protocol to interact with a network device. RESTCONF is a protocol used for accessing data defined in YANG, using RESTful principles.

restconf: This is the correct choice to complete the script as it indicates that the RESTCONF protocol is being used to communicate with the device.

The relevant line in the script should read:

response = requests.post(f'https://{self.hostname}:{self.port}/restconf/operations/cisco-ia:save-config/', headers=self.headers, auth=(self.username, self.password), verify=False)

Cisco RESTCONF Protocol Guide

DRAG DROP

Drag and drop the characteristics from the left onto the software development methodologies on the right.


Question 470
Correct answer: Question 470

Explanation:

Cisco DevNet Associate Certification Guide, Sections on Agile and Lean methodologies

Official documentation and resources on Agile and Lean software development practices

'The Lean Startup' by Eric Ries (for Lean principles)

'Agile Software Development with Scrum' by Ken Schwaber and Mike Beedle (for Agile principles)

Therefore, the correct mapping is:

Agile:

Optimization of the development process

Focused on the processes of a specific team

Lean:

Optimization of the production process

Focused on the processes of an organization

Total 471 questions
Go to page: of 48