Which JSON syntax is valid?

Which JSON syntax is valid?
A . {“switch”: “name”: “dist1”, “interfaces”: [“gig1”, “gig2”, “gig3”]}
B . {/“switch/”: {/“name/”: “dist1”, /“interfaces/”: [“gig1”, “gig2”, “gig3”]}}
C . {“switch”: {“name”: “dist1”, “interfaces”: [“gig1”, “gig2”, “gig3”]}}
D . {‘switch’: (‘name’: ‘dist1’, ‘interfaces’: [‘gig1’, ‘gig2’, ‘gig3’])}

Answer: A

Latest 350-401 Dumps Valid Version with 404 Q&As

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund

Subscribe
Notify of
guest
3 Comments
Inline Feedbacks
View all comments
json
json
3 years ago

Correct Answer is C

Zameer Khan
Zameer Khan
3 years ago

{
“switch”: {
“name”: “dist1”,
“interfaces”: [“gig1”, “gig2”, “gig3”]
}
}

Answer is C, verified on https://jsonlint.com/ as said by Brother Kvirs

Kvirs
Kvirs
3 years ago

C, not A. Check onhttps://jsonlint.com/