Step 1: Instead of memorizing definitions, verify by tracing a tiny example tree with root A, left child B, and right child C.
Step 2: Preorder visits node first: the sequence produced is A, B, C, which follows the pattern 'node, left, right' - this is description M.
Step 3: Inorder visits the left child before the node: the sequence produced is B, A, C, which follows the pattern 'left, node, right' - this is description L.
Step 4: Postorder visits the node last: the sequence produced is B, C, A, which follows the pattern 'left, right, node' - this is description N.
Step 5: This trace confirms I (Inorder) - L, II (Preorder) - M, III (Postorder) - N, without needing to recall the definitions from memory.
Final Answer: Option (A)