Refer to the exhibit.
<books>
<science>
<biology>10.00</biology>
<geology>9.00</geology>
<chemistry>8.00</chemistry>
</science>
<math>
<calculus>20.00</calculus>
<algebra>12.00</algebra>
</math>
</books>
Which JSON is equivalent to the XML-encoded data
| A. |
[{
"books": {
"science": {
"biology": "10.00",
"geology": "9.00",
"chemistry": "8.00"
},
"math": {
"calculus": "20.00",
"algebra": "12.00"
}
}
}]
|
|
| B. |
{
"books": [
"science": {
"biology": "10.00",
"geology": "9.00",
"chemistry": "8.00"
},
"math": {
"calculus": "20.00",
"algebra": "12.00"
}
}
}
|
|
| C. |
{
"books": [
"science": {
"biology": "10.00",
"geology": "9.00",
"chemistry": "8.00"
},
"math": {
"calculus": "20.00",
"algebra": "12.00"
}
]
}
|
|
| D. |
{
"books": [
"science", {
"biology": "10.00",
"geology": "9.00",
"chemistry": "8.00"
},
"math", {
"calculus": "20.00",
"algebra": "12.00"
}
]
}
|
|