in which of the given data structures, is pointers concept applied?
Answer options
A
Linked list
B
Binary tree
Correct answer: Linked list, Binary tree
Explanation
Both Linked lists and Binary trees use the pointer concept. Linked list nodes contain a pointer to the next node, and binary tree nodes contain pointers to left and right children.