exam questions

Exam 350-401 All Questions

View all questions & answers for the 350-401 exam

Exam 350-401 topic 1 question 906 discussion

Actual exam question from Cisco's 350-401
Question #: 906
Topic #: 1
[All 350-401 Questions]



Refer to the exhibit. What is achieved by this Python script?

  • A. It loads JSON data into an HTTP request.
  • B. It converts JSON data to an HTML document.
  • C. It counts JSON data from a website.
  • D. It reads JSON data into a formatted list.
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
teems5uk
Highly Voted 1 year, 4 months ago
Selected Answer: D
D. It reads JSON data into a formatted list. The script makes HTTP requests to a specified URL, retrieves JSON data, and processes it to create a formatted list. In this case, it appears to be extracting version information and a list of bad IP addresses from a web service.
upvoted 6 times
...
AbdullahMohammad251
Most Recent 7 months, 4 weeks ago
Selected Answer: D
We are appending the response content of an HTTP GET request into a Python list "bp"
upvoted 1 times
...
chiacche
8 months ago
Selected Answer: D
Sends an HTTP GET request to the badip endpoint and appends the 'ip' value of each bad IP to the bgp list
upvoted 1 times
...
[Removed]
11 months, 2 weeks ago
Selected Answer: D
D is correct
upvoted 1 times
...
nj1999
1 year, 2 months ago
D What are JSON loads () in Python? The json.loads() method can be used to parse a valid JSON string and convert it into a Python Dictionary. It is mainly used for deserializing native string, byte, or byte array which consists of JSON data into Python Dictionary.
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...