200-901 • Practice Test 19
Free 200-901 practice test — 15 questions with explanations. Set 19. No signup required.
A Python script uses the `requests` library to fetch device details from Cisco DNA Center. The API returns a JSON response with nested objects. To extract the management IP address from the response stored in variable `data`, which code snippet is correct? The JSON structure is:
{
"response": [
{
"managementIpAddress": "192.168.1.1",
"hostname": "router1"
}
]
}