What is the output of (/ 6 3) and (- 6 4)?
2 2
1/2 2
2 -2
1/2 -2
Correct Answer: A — 2 2
Explanation:
Syntax of the LISP takes prefix expressions. So, 6/3=2 and 6-4=2 will be the outputs of the following statements.
Output: 2,2