Cisco
350-601 · Question #272
Which data structure results from running this Python code?
The correct answer is B. dictionary. Dictionary in Python is an unordered collection of data values, used to store data values like a map, which, unlike other Data Types that hold only a single value as an element, Dictionary holds key:value pair. Key-value is provided in the dictionary to make it more optimized./
Automation
Question
Which data structure results from running this Python code?
Exhibit
Options
- Atuple
- Bdictionary
- Cset
- Dlist
How the community answered
(34 responses)- A9% (3)
- B85% (29)
- C3% (1)
- D3% (1)
Explanation
Dictionary in Python is an unordered collection of data values, used to store data values like a map, which, unlike other Data Types that hold only a single value as an element, Dictionary holds key:value pair. Key-value is provided in the dictionary to make it more optimized./
Topics
#Python#Data Structures#Dictionary
Community Discussion
No community discussion yet for this question.
