Pass 350-901 Exam Latest Practice Questions Updated on Jun 11, 2023
Cisco 350-901 Study Guide Archives
To prepare for the Cisco 350-901 exam, candidates should have a good understanding of software development and programming concepts, as well as knowledge of Cisco core platforms and APIs. They should also have experience with software development methodologies, programming languages such as Python and JavaScript, and software development tools such as Git and Docker. Candidates can find study materials and resources on the Cisco website, as well as through third-party training providers.
NEW QUESTION # 157 


Refer to the exhibit above and click on the resource tabs in the top left corner to view an IETF TANG MODEL and a Python file that changes the configuration via RESTCONF. Drag and drop the code snippets from the left onto the item numbers on the right that match the missing sections in the exhibit to complete the JSON file that changes configuration of interface GigabitEthernet1 to have an IPv4 configuration of
10.10.0.1/24. Not all options are used.
Answer:
Explanation:

NEW QUESTION # 158
Refer to the exhibit.
An application's REST API GET call is tested to the inventory database. Which missing code must be included to limit the number of values that are returned from the query to 20?
- A. inventory=limit?20
- B. ?mventory=20
- C. limit=?2Q
- D. inventory? Iimit20
Answer: D
NEW QUESTION # 159
Which Puppet manifest changes the NTP server and generates the traffic from VLAN 15?
A)
B)
C)
D)
- A. Option A
- B. Option C
- C. Option B
- D. Option D
Answer: B
NEW QUESTION # 160 


Click on the Meraki Resources tab in the left corner to view Meraki documentation to help with this question.Drag and drop the parts of the python code from the left onto the item numbers on the right that match the missing sections in the exhibit to enable an SSID. Not all code parts are used.
Answer:
Explanation:

NEW QUESTION # 161
How should a web application be designed to work on a platform where up to 1000 requests per second can be served?
- A. Use algorithms like random early detection to deny excessive requests.
- B. Only 1000 user connections are allowed; further connections are denied so that all connected users can be served.
- C. All requests are saved and processed one by one so that all users can be served eventually.
- D. Set a per-user limit (for example, 5 requests/minute/user) and deny the requests from the users who have reached the limit.
Answer: D
Explanation:
When providing an API service, we need to ensure fair usage for every user so that the system resources are effectively and fairly serving all. We need to apply restrictions to make sure that all majority of users are satisfied. The way to do that is to set a limit per user. For example, we can limit the number of requests per user to be no more than 100 per second.
NEW QUESTION # 162
Refer to the exhibit.
Answer:
Explanation:
NEW QUESTION # 163
Which Puppet manifest needs to be used to configure an interface GigabitEthernet 0/1 on a Cisco IOS switch?

- A. Option A
- B. Option B
- C. Option D
- D. Option C
Answer: C
NEW QUESTION # 164
Refer of the exhibit.
Click on the resource labs in the top left corner to view resources to help with this question The script uses the Cisco Intersight REST API Drag and drop the code from the bottom of the code snippet to the blanks in the code to construct a Python script to update the firmware on a specific Cisco interaght managed UCS rack server, DMZ-RL3ADJM.
Answer:
Explanation:

NEW QUESTION # 165
A client is written that uses a REST API to interact with a server. Using HTTPS as the transport, an HTTP request is sent and received an HTTP response. The response contains the HTTP response status code: 503 Service Unavailable.
Which action is the appropriate response?
- A. Resend the request using HTTP as the transport instead of HTTPS.
- B. Look for a Retry-After header in the response and resend the request after the amount of time indicated.
- C. Add an Authorization header that supplies appropriate credentials and sends the updated request.
- D. Addan Accept header that indicates the content types that the client understands and send the updated request.
Answer: A
NEW QUESTION # 166
Refer to the exhibits which show the documentation associated with the create port object API cafl in Cisco Firepower Threat Defense, and a cURL command. Which data payload completes the cURL command to run the APi call?
A)
B)
C)
D)
- A. Option A
- B. Option C
- C. Option B
- D. Option D
Answer: B
Explanation:
Explanation
Reference : https://developer.cisco.com/site/ftd-api-reference/#!editicmpv4portobject/path-parameters
NEW QUESTION # 167
Drag and drop the expressions from below onto the code to implement error handling. Not all options are used.
Answer:
Explanation:
NEW QUESTION # 168
A developer in a learn of distributed authors is working on code in an isolated Git branch named
'update4a2f5464771 The developer attempts to merge the new code with a branch named
'dvcapp2a3f1564733' however the merge operation encounters a conflict error during the process. Which Git command must the developer use to exit from the merge process and return the branch to the previous state?
- A. git merge -exit
- B. git abort -merge
- C. git abort -status
- D. git merge -abort
Answer: D
NEW QUESTION # 169
Refer to the exhibit.
Drag and drop the steps from the left into the order of operation on the right for a successful OAuth2 three-legged authorization code grant flow,
Answer:
Explanation:

NEW QUESTION # 170
User report that they can no longer process transactions with the online ordering application, and the logging dashboard is displaying these messages.
Fri Jan 10 19:37:31.123 EST 2020 [FRONTEND] INFO: Incoming request to
add item to cart from user 45834534858
Fri Jan 10 19:37:31 247 EST 2020 [BACKEND] INFO: Attempting to add item to cart Fri Jan 10 19:37:31 250 EST 2020 [BACKEND] ERROR: Failed to add item:
MYSQLDB ERROR: Connection refused
What is causing the problem seen in these log messages?
- A. The backend process is overwhelmed with too many transactions.
- B. The backend is not authorized to commit to the database.
- C. The user is not authorized to add the item to their cart.
- D. The database server container has crashed.
Answer: D
NEW QUESTION # 171 
Refer to the exhibit above and click on the resource tabs in the top left corner to view resources to help with this question. Drag and drop the correct code snippets from the left onto the item numbers on the right that match the missing sections in the exhibit to complete the cURL script that will use RESTCONF to update an interface on a CISCO IOS XE device.
Answer:
Explanation:

NEW QUESTION # 172
Refer to the exhibit.
Which code snippet completes this code to handle API rate-limit?
- A. response.status != 408
- B. response.status_code !*= 408
- C. response.status_code == 429
- D. response.status_code 1= 429
Answer: D
NEW QUESTION # 173
Refer of the exhibit.
Click on the resource labs in the top left corner to view resources to help with this question The script uses the Cisco Intersight REST API Drag and drop the code from the bottom of the code snippet to the blanks in the code to construct a Python script to update the firmware on a specific Cisco interaght managed UCS rack server, DMZ-RL3ADJM.
Answer:
Explanation:
NEW QUESTION # 174
Drag and Drop Question
Refer to the exhibit. Drag and drop the code snippets from the left onto the item numbers on the right that match the missing sections in the exhibit to complete the script to implement control flow.

Answer:
Explanation:
NEW QUESTION # 175
Refer to the exhibit.
Drag and drop the steps from the left into the correct order of operation on the right for a successful OAuth2 three-legged authorization code grant flow.
Answer:
Explanation:
NEW QUESTION # 176
......
350-901 Questions Prepare with Learning Information: https://examtorrent.actualtests4sure.com/350-901-practice-quiz.html

