ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What is the output of (/ 6 3) and (- 6 4)?
Correct Answer: A — 2 2
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