Question 26 2 pts XML and JSON are both semi-structured data models which can represent data similarly. The following is

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

Question 26 2 pts XML and JSON are both semi-structured data models which can represent data similarly. The following is

Post by answerhappygod »

Question 26 2 Pts Xml And Json Are Both Semi Structured Data Models Which Can Represent Data Similarly The Following Is 1
Question 26 2 Pts Xml And Json Are Both Semi Structured Data Models Which Can Represent Data Similarly The Following Is 1 (39.57 KiB) Viewed 24 times
Question 26 2 pts XML and JSON are both semi-structured data models which can represent data similarly. The following is a JSON example: { 'patient': 4711, 'postcode': 2020, 'visits': [ {'when': '2020-01-29', 'comment': 'annual checku p'}, {'when': '2020-02-14', 'comment': 'blood test resul ts'} ] } Which of the following choices is an equivalent representation of the same data in XML?

<patient id='4711'> <postcode>2020</postcode> <visits> <visit> <when>2020-01-29</when> <comment>annual checkup</comment> </visit> <visit> <when>2020-02-14</when> <comment>blood test results</comment> </visit> </visits> </patient> <patient>4711</patient> <postcode>2020</postcode> <visits> <when>2020-01-29</when> <comment>annual checkup</comment> <when>2020-02-14</when> <comment>blood test results</comment> </visits>

<xml> patient: 4711 postcode: 2020 <visits> when: 2020-01-29 comment: annual checkup when: 2020-02-14 comment: blood test results </visits> </xml> <xml> <patient>4711</patient> <postcode>2020</postcode> <when>2020-01-29</when> <comment>annual checkup</comment> <when>2020-02-14</when> <comment>blood test results</comment> </xml>
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply