mediumMultiple ChoiceObjective-mapped
200-901 Practice Question: Is developing a Python application that uses the…
A network engineer is developing a Python application that uses the Cisco Meraki Dashboard API. The API responses are in JSON format. Which Python module is most commonly used to parse JSON responses?
⚠ Common exam trap
Cisco often tests the candidate's familiarity with the specific Python module name for JSON parsing, and the trap here is that candidates may confuse the `json` module with other data interchange formats like YAML or XML, which are also used in networking but not for Meraki API responses.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
json
The `json` module is the standard Python library for parsing JSON data, which is the format used by the Cisco Meraki Dashboard API responses. It provides `json.loads()` to convert a JSON string into a Python dictionary and `json.load()` to read from a file, making it the correct and most commonly used choice for handling API responses in JSON format.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
csv
Why it's wrong here
csv is used for comma-separated values, not JSON.
- ✗
yaml
Why it's wrong here
yaml is used for YAML data, not JSON.
- ✓
json
Why this is correct
The json module provides methods for parsing JSON strings and converting Python objects to JSON.
- ✗
xml
Why it's wrong here
xml is used for parsing XML data.
Go deeper
Related to this question
About these practice questions
Courseiva writes every 200-901 question from scratch — 989 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This 200-901 practice question is part of Courseiva's free Cisco certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the 200-901 exam.