Node Class (5%): Create a Node Class which has data and linker parts. Data part stores any type of data and nodes can be linked to each other together by their linkers named "next". Node class has a...
A. getData method to retrieve stored data
B. setData method to modify stored data
C. getNext method to access the next linked node
D. All of the above