In a linked list
i. each link contains a pointer to the next link
ii. an array of pointers point to the links
iii. each link containing data or pointer to data
iv. the links are stored in an array
Which of the following is correct
Answers
Answered by
10
Explanation:
Among the various options given in question statement the correct option is the first one. In linked list, each node in the link will have a pointer for the for the next node it is connected with. A linked list is a linear data collection where data is stored based on the nodes of the link and not a physical memory structure
Similar questions