• 2022-06-04
    A Node structure in a linked list .
    A: consists of two parts, one for the node value and the other for a pointer to another node.
    B: has only one part to store the node value.
    C: has only one part to store the relationship pointer between the nodes.
    D: consists of two parts, one for the node value and the other for the number of bytes required by the node.