Difficulty: Easy
Correct Answer: Both b and c
Explanation:
Introduction / Context:
Different Common Lisp implementations provide launch commands that reflect either the language (LISP/CL) or a vendor-specific binary name. The question checks recognition of generic invocation names across platforms.
Given Data / Assumptions:
Concept / Approach:
While many vendors use their own executable names (e.g., sbcl, clisp), generic entry points often include ‘‘lisp’’ or ‘‘cl’’. Therefore, acknowledging both ‘‘LISP’’ and ‘‘CL’’ covers standard, language-centric invocations.
Step-by-Step Solution:
Verification / Alternative check:
On Unix-like systems, symlinks ‘‘lisp’’ or ‘‘cl’’ are frequently provided; Windows shortcuts likewise reflect these names for certain distributions.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming a single universal executable; in practice, vendor names vary, but ‘‘lisp’’ and ‘‘cl’’ remain common generic launchers.
Final Answer:
Both b and c
Discussion & Comments