December 21, 2024

200-901 DEVASC exam

Candidates use the latest updated DevNet Associate 200-901 dumps from leads4pass 2023: https://www.leads4pass.com/200-901.html to help them jump over the hurdles and pass the 200-901 DEVASC exam successfully.

leads4pass 200-901 dumps provide PDF files and a VCE exam engine to help you practice 200-901 DEVASC exam questions quickly and easily. The latest updated 200-901 dumps contain 437 exam questions and answers, verified by IT experts to be true and effective.

Read DevNet Associate 200-901 Dumps Exam Questions and Answers Shared Free 2023 Online:

TypeNumber of exam questionsExam nameExam codeLast updated
Free15Developing Applications and Automating Workflows using Cisco Platforms (DEVASC)200-901200-901 dumps
Question 1:

DRAG DROP

Drag and drop the HTTP status codes from the left onto the correct descriptions on the right.

Select and Place:

latest DevNet Associate 200-901 Dumps questions 1

Correct Answer:

latest DevNet Associate 200-901 Dumps questions 1-1

Question 2:

What is a principle of a code review process?

A. Changes are made after the code is submitted to source control.

B. It must not prevent code from getting into production as quickly as possible.

C. Naming standards must be consistent.

D. A technical lead must sign off on the review.

Correct Answer: D

Question 3:

A developer creates a web application that receives a username and password and uses them to sync the credentials to other services through HTTPS. API keys to services are part of the configuration files of the application, but the credentials to the database that stores the synchronization logs are obtained through an external vault service. What is the security issue in this scenario?

A. Communication between the application and the services is not encrypted.

B. The database credentials should be stored in the configuration files so that they are secured on the same server.

C. The API keys are stored in the configuration files but should be stored in the vault service.

D. The synchronization logs should be encrypted and not stored in a relational database.

Correct Answer: A

Question 4:

What are the two benefits of implementing common data structures when working with APIs in remote systems? (Choose two.)

A. ensures that developers are limited to using one data schema type

B. prevents multivendor interoperability

C. improves security in RESTful web services

D. enforces standardized data structures

E. leverages code that is easily managed and reused

Correct Answer: BE

Question 5:

A developer creates a script that configured multiple Cisco IOS XE devices in a corporate infrastructure. The internal test environment is unavailable, and no maintenance window is available to test on a low-priority production environment. Which resource is used to test the code before it is applied to the production environment?

A. Code Exchange

B. Cisco DevNet Learning Labs

C. Cisco DevNet Sandbox

D. Cisco Support

Correct Answer: C

Question 6:
latest DevNet Associate 200-901 Dumps questions 6

Refer to the exhibit. An engineer must check the admin rights of users on a database regularly and prepares the Python script to automate the process. The script connects to the database and runs a query. What is a security issue about the secrets in the code that relates to secret protection?

A. They must be stored in configuration files if there is a possibility of leakage.

B. They must be Base64-encoded if stored in the user database.

C. They must be encrypted if stored in the user database.

D. They must be stored in configuration files if no authentication will be used.

Correct Answer: D

Question 7:

Which advantage does the agile process offer compared to waterfall software development?

A. to add or update features with incremental delivery

B. to view the full scope of end-to-end work

C. to have each phase end before the next begins

D. to fix any issues at the end of the development cycle

Correct Answer: A

Question 8:

Which two statements are true about Cisco UCS Manager, Cisco UCS Director, or Cisco Intersight APIs? (Choose two.)

A. UCS Manager uses JSON to encode API interactions and utilizes Base64-encoded credentials in the HTTP header for authentication.

B. UCS Director API interactions can be XML- or JSON-encoded and require an API key in the HTTP header for authentication.

C. Cisco Intersight uses XML to encode API interactions and requires an API key pair for authentication.

D. UCS Manager API interactions are XML-encoded and require a cookie in the method for authentication.

E. Cisco Intersight API interactions can be encoded in XML or JSON and require an API key in the HTTP header for authentication.

Correct Answer: BD

Reference:

https://www.cisco.com/c/en/us/td/docs/unified_computing/ucs/ucs-director/rest-api-getting-started-guide/6-5/cisco-ucs-director-REST-API-getting-started-65.html

https://www.cisco.com/c/en/us/td/docs/unified_computing/ucs/sw/api/b_ucs_api_book.pdf

Question 9:

Refer to the exhibit.

latest DevNet Associate 200-901 Dumps questions 9

Which OWASP threat does this example demonstrate?

A. broken access control

B. cross-site scripting

C. SQL injection

D. man-in-the-middle

Correct Answer: B

https://owasp.org/www-chapter-coimbatore/assets/files/Web%20Application%20Security%20Adithyan% 20AK.pdf

Question 10:

Refer to the exhibit.

latest DevNet Associate 200-901 Dumps questions 10

An API call is constructed to retrieve the inventory in XML format by using the API. The response to the call is 401 Unauthorized. Which two headers must he add to the API call? (Choose two.)

A. Bearer-Token: dXNlcm5hbWU6cGFzc3dvemQ=

B. Content-Type: application/XML

C. Authentication: Bearer dXNlcm5hbWU6cGFzc3dvemQ=

D. Accept: application/XML

E. Authorization: Bearer dXNlcm5hbWU6cGFzc3dvemQ=

Correct Answer: BE

Question 11:
latest DevNet Associate 200-901 Dumps questions 11

Refer to the exhibit. A network engineer wants to automate the port enable/disable process on specific Cisco switches. The engineer creates a script to send a request through RESTCONF and uses ietf as the YANG model and JSON as payload. Which command enables an interface named Loopback1?

A. enable_function(Loopback1, true, `iana-if-type:softwareLoopback\’)

B. enable_function(`iana-if-type:softwareLoopback\’, Loopback1, true,)

C. def enable_function(`iana-if-type:softwareLoopback\’, Loopback1, false,)

D. def enable_function(Loopback1, true, `iana-if-type:softwareLoopback\’)

Correct Answer: D

Question 12:

The developer is working on a new feature and made changes on a branch named ‘branch-413667549a-new’. When merging the branch to production, conflicts occurred. Which Git command must the developer use to recreate the pre-merge state?

A. git merge –no-edit

B. git merge –commit

C. git merge –revert

D. git merge –abort

Correct Answer: D

Question 13:

Which device is a system that monitors and controls the incoming and outgoing network traffic based on predetermined security roles?

A. router

B. switch

C. load balancer

D. firewall

Correct Answer: D

Question 14:

Refer to the exhibit.

latest DevNet Associate 200-901 Dumps questions 14

Python code has been written to query a device. The executed code results in the error shown. Which action resolves the problem?

A. import json

B. requests(“GET”, base_url + request_url, cookles=cookies)

C. pip install requests

D. import requests

Correct Answer: D

Question 15:

A developer completed the creation of a script using Git. Before delivering it to the customer, the developer wants to be sure about all untracked files, without losing any information. Which command gathers this information?

A. git clean –n

B. git rm –f

C. git clean –r

D. git rm *

Correct Answer: A

Candidates studying the DevNet Associate 200-901 dumps exam questions above can help improve their exam experience, but this is only a warm-up.

You are welcome to download the latest updated 2023 200-901 dumps: https://www.leads4pass.com/200-901.html, A truly effective route for candidates to pass the 200-901 DEVASC exam.

Candidates use the latest updated DevNet Associate 200-901 dumps from leads4pass: https://www.leads4pass.com/200-901.html, to help you get past the hurdle and successfully pass the 200-901 DEVASC exam.

leads4pass 200-901 dumps provide PDF files and a VCE exam engine to help you practice 200-901 DEVASC exam questions quickly and easily. The latest updated 200-901 dumps contain 294 exam questions and answers, verified by IT experts to be true and effective.

Share 13 DevNet Associate 200-901 dumps PDF:https://drive.google.com/file/d/1hqDUcvc1vHJMiDa15KhDD1Jjp3q8j0hA/

Read DevNet Associate 200-901 dumps exam questions and answers online:

New Question 1:

How does requesting a synchronous API operation differ from requesting an asynchronous API operation?

A. clients receive responses with a task id for further processing

B. clients subscribe to a webhook for operation results

C. clients poll for the status of the execution of operations

D. clients can access the results immediately

Correct Answer: C


New Question 2:

What are two advantages of YANG-based approaches for infrastructure automation? (Choose two.)

A. multi-platform vendor abstraction

B. compiles to executables that run on network devices

C. designed to reflect networking concepts

D. directly maps to JavaScript

E. command line is driven interface

Correct Answer: AC


New Question 3:

Which device is used to transport traffic from one broadcast domain to another broadcast domain?

A. layer 2 switch

B. proxy server

C. router

D. load balancer

Correct Answer: C


New Question 4:

Which service provides a directory lookup for IP addresses and host names?

A. DNS

B. NAT

C. SNMP

D. DHCP

Correct Answer: A


New Question 5:

Users cannot access a web server and after the traffic is captured, the capture tool shows an ICMP packet that reports “time exceeded in-transit”. What is the cause of this webserver access issue?

A. A router along the path has the wrong time.

B. A router along the path is misrouting the packets in the wrong direction.

C. The server is too loaded and the connection could not be handled in time.

D. The server is too far away and the packets require too much time to reach it.

Correct Answer: B


New Question 6:

Refer to the exhibit.

DevNet Associate 200-901 dumps exam q6

What is the value of the node defined by this YANG structure?

DevNet Associate 200-901 dumps exam q6-1

A. Option A

B. Option B

C. Option C

D. Option D

Correct Answer: D


New Question 7:

What is used in Layer 2 switches to direct packet transmission to the intended recipient?

A. MAC address

B. IPv6 address

C. spanning tree D. IPv4 address

Correct Answer: A


New Question 8:

Refer to the exhibit.

DevNet Associate 200-901 dumps exam q8

What is the result of executing this Ansible playbook?

A. The playbook copies a new start-up configuration to CISCO_ROUTER_01

B. The playbook copies a new running configuration to CISCO_ROUTER_01

C. The playbook backs up the running configuration of CISCO_ROUTER_01

D. The playbook backs up the start-up configuration of CISCO_ROUTER_01

Correct Answer: D


New Question 9:

A 401 HTTP response code is returned when calling a REST API. What is the error state identified by this response code?

A. The server cannot process the request as it has detected an issue in the request syntax or body.

B. The request has not been accepted because it requires authentication.

C. The sever accepted the request but the client is not authorized for this content.

D. The server cannot find the requested resource because the path specified is incorrect.

Correct Answer: B

Reference: https://blog.restcase.com/rest-api-error-codes-101/#:~:text=A%20401%20error%20response% 20indicates,credentials%20or%20none%20at%20all.


New Question 10:

What is the first development task in test-driven development?

A. Write code that implements the desired function.

B. Write a failing test case for the desired function.

C. Reverse engineer the code for the desired function.

D. Write a passing test case for existing code.

Correct Answer: B

Reference: https://technologyconversations.com/2013/12/20/test-driven-development-tdd-example- walkthrough/


New Question 11:

What is the purpose of a firewall in application deployment?

A. adds TLS support to an application that does not support it natively

B. limits traffic to only ports required by the application

C. provides translation for an application\’s hostname to its IP address

D. forwards traffic to a pool of instances of the application

Correct Answer: B


New Question 12:

A small company has 5 servers and 50 clients. What are two reasons an engineer should split this network into separate client and server subnets? (Choose two.)

A. Subnets will split domains to limit failures.

B. A router will limit the traffic types between the clients and servers.

C. Subnets provide more IP address space for clients and servers.

D. A router will bridge the traffic between clients and servers.

E. Internet access to the servers will be denied on the router.

Correct Answer: AB


New Question 13:

How does a developer create and switch to a new branch called “my-bug-fix” to develop a product fix?

A. git checkout -b my-bug-fix

B. git branch -b my-bug-fix

C. git branch my-bug-fix

D. git checkout my-bug-fix

Correct Answer: C

Reference: https://www.dnnsoftware.com/community-blog/cid/155105


New Question 14:

What operation is performed with YANG model-driven programmability in NX-OS?

A. configure a device with native and OpenConfig-based models

B. bootstrap a device that has a factory-default configuration

C. send CLI commands to a device and retrieve output in JSON format

D. run Linux commands natively on the device

Correct Answer: A

Reference: https://www.cisco.com/c/en/us/products/collateral/switches/nexus-9000-series-switches/white- paper-c11-741518.html


New Question 15:

What is the function of an IP address in networking?

A. represents a network connection on specific devices

B. specifies the type of traffic that is allowed to roam on a network

C. specifies the resource\’s location and the mechanism to retrieve it

D. represents the unique ID that is assigned to one host on a network

Correct Answer: D

Download 13 DevNet Associate 200-901 dumps PDF:https://drive.google.com/file/d/1hqDUcvc1vHJMiDa15KhDD1Jjp3q8j0hA/

Candidates studying the DevNet Associate 200-901 dumps exam questions above can help them improve their exam experience, but this is only a warm-up.

You are welcome to download the latest updated DevNet Associate 200-901 dumps: https://www.leads4pass.com/200-901.html, A truly effective route for candidates to pass the 200-901 DEVASC exam.