Question:Which of the following lines of the code will delete two successive nodes of a single linked linear list(with more than two nodes)? Here 'LINK[X]' denotes the address field of node X.
A LINK[X]:=LINK[LINK[X]]
B X:=LINK[LINK[X]]
C LINK[LINK[X]]:=X
D LINK[X]:=LINK[LINK[LINK[X]]]
+ AnswerD
+ Report