- A
JSON: Lightweight, key-value based data format
JSON (JavaScript Object Notation) is a lightweight data-interchange format that uses key-value pairs and is easy for humans to read and write. It is commonly used in REST APIs and network automation.
- B
XML: Binary schema-driven format
Why wrong: XML is not binary; it is a text-based markup language that uses tags and attributes. Protobuf (Protocol Buffers) is the binary schema-driven format.
- C
YAML: Uses tags and attributes
Why wrong: YAML relies on indentation for structure, not tags and attributes. Tags and attributes are characteristic of XML.
- D
CSV: For web page structure
Why wrong: CSV (Comma-Separated Values) is for tabular data, not web page structure. HTML is the format for web page structure.
Quick Answer
The answer is JSON, which is a lightweight, key-value based data format. This is correct because JSON structures data as human-readable text using key-value pairs, making it both efficient to parse and simple to transmit over networks, unlike XML’s heavier tag-and-attribute syntax or YAML’s indentation-dependent structure. On the CCNA 200-301 v2 exam, this type of matching question tests your understanding of how different data formats are used in network automation and REST API interactions, where JSON is the default for modern device configuration and telemetry. A common trap is confusing JSON’s key-value pairs with XML’s nested tags, so remember that JSON uses curly braces and colons, not angle brackets. For a quick memory tip: think “JSON = Just Simple Object Notation” to recall its lightweight, key-value nature.
CCNA Network Infrastructure and Connectivity Practice Question
This 200-301 practice question tests your understanding of network infrastructure and connectivity. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. A key principle to apply: jSON uses braces and key-value pairs to represent data, making it compact and easy for applications to parse in network automation.. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Match the data format to its most accurate characteristic.
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: Lightweight, key-value based data format
JSON is lightweight and key-value based, XML uses tags and attributes, YAML relies on indentation, CSV is for tabular data, Protobuf is a binary schema-driven format, and HTML is for web page structure.
Key principle: JSON uses braces and key-value pairs to represent data, making it compact and easy for applications to parse in network automation.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
JSON: Lightweight, key-value based data format
Why this is correct
JSON (JavaScript Object Notation) is a lightweight data-interchange format that uses key-value pairs and is easy for humans to read and write. It is commonly used in REST APIs and network automation.
Related concept
JSON uses braces and key-value pairs to represent data, making it compact and easy for applications to parse in network automation.
- ✗
XML: Binary schema-driven format
Why it's wrong here
XML is not binary; it is a text-based markup language that uses tags and attributes. Protobuf (Protocol Buffers) is the binary schema-driven format.
- ✗
YAML: Uses tags and attributes
Why it's wrong here
YAML relies on indentation for structure, not tags and attributes. Tags and attributes are characteristic of XML.
- ✗
CSV: For web page structure
Why it's wrong here
CSV (Comma-Separated Values) is for tabular data, not web page structure. HTML is the format for web page structure.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The 200-301 exam frequently reuses these exact scenarios with slightly different constraints.
✓JSON: Lightweight, key-value based data formatCorrect answer▾
Why this is correct
JSON (JavaScript Object Notation) is a lightweight data-interchange format that uses key-value pairs and is easy for humans to read and write. It is commonly used in REST APIs and network automation.
✗XML: Binary schema-driven formatWrong answer — click to see why▾
Why this is wrong here
XML is text-based, not binary. The binary schema-driven format is Protobuf.
Why candidates choose this
Candidates may confuse XML with binary formats because XML can be complex and is sometimes used in serialization contexts.
✗YAML: Uses tags and attributesWrong answer — click to see why▾
Why this is wrong here
YAML uses indentation, not tags and attributes. That is XML's characteristic.
Why candidates choose this
Candidates might think YAML uses tags because it is also a markup language, but YAML's syntax is indentation-based.
✗CSV: For web page structureWrong answer — click to see why▾
Why this is wrong here
CSV is for tabular data; HTML is for web page structure.
Why candidates choose this
Candidates might associate CSV with web data because CSV files are often used to export data from web applications, but they do not define structure.
Analysis generated from the official 200-301blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Common exam traps
Common exam trap: answer the scenario, not the keyword
Avoid confusing the characteristics of different data formats. Remember that JSON uses key-value pairs, XML uses tags, YAML uses indentation, CSV is tabular, Protobuf is binary, and HTML is for web structure.
Detailed technical explanation
How to think about this question
Data formats like JSON, XML, YAML, and CSV are essential in network automation and management, which are increasingly important in Cisco CCNA 200-301 topics. JSON (JavaScript Object Notation) is a lightweight, text-based format that uses braces and key-value pairs to represent data. It is widely used in RESTful APIs and network programmability because it is easy for both humans and machines to read and write. XML (Extensible Markup Language) uses explicit opening and closing tags to define data elements, making it verbose but highly structured and self-describing. It remains common in legacy network management systems and some Cisco device configurations. YAML (YAML Ain't Markup Language) is designed for human readability, using indentation to represent data hierarchy instead of braces or tags. This makes YAML popular in automation tools like Ansible and orchestration platforms, which Cisco increasingly supports for network automation. CSV (Comma-Separated Values) is the simplest format, representing data in rows and columns separated by commas. It is mainly used for exporting tabular data such as routing tables or interface statistics, but it lacks hierarchical structure and metadata. Understanding these formats helps CCNA candidates recognize how network data is structured and exchanged in automation contexts. A common exam trap is confusing JSON with XML due to their textual nature; however, JSON’s use of braces and key-value pairs contrasts with XML’s tag-based structure. Practically, Cisco network engineers use JSON for API interactions, YAML for automation playbooks, and CSV for simple data exports, so recognizing these formats supports effective network management and automation workflows.
KKey Concepts to Remember
- JSON uses braces and key-value pairs to represent data, making it compact and easy for applications to parse in network automation.
- XML uses explicit opening and closing tags around data elements, providing a verbose but highly structured format common in legacy systems.
- YAML relies on indentation to define data hierarchy, enhancing human readability and making it popular in network automation and orchestration tools.
- CSV represents data as rows of comma-separated values, primarily used for simple tabular data like spreadsheet exports or reports.
- Network automation in Cisco environments often uses JSON for API data exchange due to its compactness and ease of parsing.
- YAML’s indentation-based structure distinguishes it from JSON and XML, which use braces and tags respectively, aiding in format recognition.
- Confusing XML tags with JSON braces is a common mistake; recognizing their distinct syntax is crucial for correct data format identification.
- CSV lacks hierarchical structure, making it unsuitable for complex data but ideal for exporting flat network data such as interface statistics.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
JSON uses braces and key-value pairs to represent data, making it compact and easy for applications to parse in network automation.
Real-world example
How this comes up in practice
A practitioner preparing for the 200-301 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. JSON uses braces and key-value pairs to represent data, making it compact and easy for applications to parse in network automation. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Review jSON uses braces and key-value pairs to represent data, making it compact and easy for applications to parse in network automation., then practise related 200-301 questions on the same topic to reinforce the concept.
- →
Network Infrastructure and Connectivity — study guide chapter
Learn the concepts, then practise the questions
- →
Network Infrastructure and Connectivity practice questions
Targeted practice on this topic area only
- →
All 200-301 questions
1,819 questions across all exam domains
- →
CCNA 200-301 v2 study guide
Full concept coverage aligned to exam objectives
- →
200-301 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related 200-301 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Network Infrastructure and Connectivity practice questions
Practise 200-301 questions linked to Network Infrastructure and Connectivity.
Switching and Network Access practice questions
Practise 200-301 questions linked to Switching and Network Access.
IP Routing practice questions
Practise 200-301 questions linked to IP Routing.
Network Services and Security practice questions
Practise 200-301 questions linked to Network Services and Security.
AI and Network Operations practice questions
Practise 200-301 questions linked to AI and Network Operations.
CCNA subnetting practice questions
Practise IPv4 subnetting, CIDR, masks, host ranges and subnet selection.
CCNA OSPF practice questions
Practise OSPF neighbours, router IDs, metrics, areas and routing-table interpretation.
CCNA VLAN practice questions
Practise VLANs, access ports, trunks, allowed VLANs and switching scenarios.
CCNA STP practice questions
Practise spanning tree, root bridge election, port roles and STP troubleshooting.
CCNA EtherChannel practice questions
Practise LACP, PAgP, port-channel behaviour and bundle requirements.
CCNA ACL practice questions
Practise standard and extended ACLs, permit/deny logic and traffic filtering.
CCNA NAT practice questions
Practise static NAT, dynamic NAT, PAT and inside/outside address translation.
Practice this exam
Start a free 200-301 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this 200-301 question test?
Network Infrastructure and Connectivity — This question tests Network Infrastructure and Connectivity — JSON uses braces and key-value pairs to represent data, making it compact and easy for applications to parse in network automation..
What is the correct answer to this question?
The correct answer is: JSON: Lightweight, key-value based data format — JSON is lightweight and key-value based, XML uses tags and attributes, YAML relies on indentation, CSV is for tabular data, Protobuf is a binary schema-driven format, and HTML is for web page structure.
What should I do if I get this 200-301 question wrong?
Review jSON uses braces and key-value pairs to represent data, making it compact and easy for applications to parse in network automation., then practise related 200-301 questions on the same topic to reinforce the concept.
What is the key concept behind this question?
JSON uses braces and key-value pairs to represent data, making it compact and easy for applications to parse in network automation.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Keep practising
More 200-301 practice questions
- A switchport connected to another switch should carry multiple VLANs, but it was manually configured as an access port.…
- What problem is HSRP designed to solve?
- Which TWO statements correctly describe the causes or implications of CRC errors, runts, giants, or output errors as see…
- You are connected to R1. Configure IPv4 and IPv6 addressing on R1's interfaces and verify reachability to R2. The curren…
- Which TWO statements accurately describe how AI/ML concepts are applied to network operations in modern enterprise netwo…
- Which TWO switch port configurations are required when connecting a Cisco IP phone and a desktop PC to a single access p…
Last reviewed: Apr 12, 2026
This 200-301 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-301 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.