which of the following is a user defined data type in python programming
Answers
Answered by
0
Answer:
no options given....according to question...options are given....please post complete questions
reenabharath:
a) List , b) Class ,c) tuple , d) dictionary
Answered by
0
Linked list, Stack, Queue, Tree, Graph, Hash map are the user defined data type in python.
Explanation:
A data structure is a logical way of organizing data in computer memory so that it can be used effectively.
A data structure allows data to be added, removed, stored and maintained in a structured manner.
Python supports two types of data structures:
- Non-primitive data types: Python has list, set, and dictionary as its non-primitive data types which can also be considered its in-built data structures.
- User-defined data structures: Data structures that aren’t supported by python but can be programmed to reflect the functionality of data structures using concepts supported by python are user-defined data structures.
- There are many data structure that can be implemented this way:
- Linked list
- Stack
- Queue
- Tree
- Graph
- Hash map
Similar questions