The logical data structure with one to many relationship is
-
a network
-
a tree
-
a chain
-
all of the above
B
Correct answer
Explanation
A tree data structure models a hierarchical structure where each node can have multiple children, representing a one-to-many relationship between parent and child nodes. In contrast, a simple linked list represents a one-to-one relationship, and a network graph represents a many-to-many relationship.