A network operator must generate a daily flow report and learn how to act on or manipulate returned dat a. When the operator runs the script, it returns an enormous amount of information. Which two actions enable the operator to limit returned data? (Choose two.)
A.
Add recordLimit. followed by an integer (key:value) to the flow_data.
B.
Add a for loop at the end of the script, and print each key value pair separately.
C.
Add flowLimit, followed by an integer (key:value) to the flow_data.
D.
Change the startDateTime and endDateTime values to include smaller time interval.
E.
Change the startDate and endDate values to include smaller date intervals.
Refer to the exhibit. import requests URL = 'https://sma.cisco.com:6080/sma/api/v2.0/quarantine/messages/details?quarantineType=spam&device_type=esa' HEADERS = {'Authorization': 'Basic Y2hlcGFLYWJSQSZl'} response = requests.get(URL, headers=HEADERS) A security engineer attempts to query the Cisco Security Management appliance to retrieve details
of a specific message. What must be added to the script to achieve the desired result?
A.
Add message ID information to the URL string as a URI.
B.
Run the script and parse through the returned data to find the desired message.
C.
Add message ID information to the URL string as a parameter.
D.
Add message ID information to the headers.
Correct Answer: C
Explanation not available for this question.
Question #3 (Topic: demo questions)
What does the response from the API contain when this code is executed?