In LISP, the function assigns the symbol x to y is
A. (setq y x)
B. (set y = 'x')
C. (setq y = 'x')
D. (setq y 'x')
E. None of the above
Answer: Option A
Solution(By Examveda Team)
In LISP, the function used to assign the value of one variable to another variable is setq. It stands for "set quoted". The syntax for using setq is (setq variable value).So, to assign the value of x to the variable y, the correct LISP expression is (setq y x).
Option B, Option C, and Option D do not follow the correct syntax for assigning a value to a variable in LISP.
Therefore, the correct LISP expression to assign the symbol x to y is Option A: (setq y x).
Join The Discussion