🧪 Common Lisp MCQ Quiz Hub

Common Lisp MCQ Interview Questions for Freshers

Choose a topic to test your knowledge and improve your Common Lisp skills

Which of the following is the basic building blocks of S-expressions?





✅ Correct Answer: 2

Is LISP a case sensitive language?





✅ Correct Answer: 2

Which of the following is part of basic syntax in LISP programming?





✅ Correct Answer: 4

Symbol manipulation in LISP is called as _____





✅ Correct Answer: 3

Lists can be formed from ____





✅ Correct Answer: 2

Which of the following are general-purpose dialects of LISP?





✅ Correct Answer: 4

What can be used to print “yes, no”?





✅ Correct Answer: 1

Can write-line keyword be used for printing strings?





✅ Correct Answer: 1

What will be the output of the following LISP statement?





✅ Correct Answer: 1

What will be the output of the following LISP statement?





✅ Correct Answer: 2

What will be the output of the following LISP statement?





✅ Correct Answer: 1

What will be the output of the following LISP statement?





✅ Correct Answer: 1

What will be the output of the following LISP statement?





✅ Correct Answer: 3

............. is the notation used for writing LISP Syntax.





✅ Correct Answer: 2

What does Lisp stands for?





✅ Correct Answer: 2

What does Lisp stands for?





✅ Correct Answer: 2

In lisp, what is meant by symbolic expression?





✅ Correct Answer: 1

In lisp, what is meant by symbolic expression?





✅ Correct Answer: 1

How many types of arguments are available in lisp?





✅ Correct Answer: 2

The Lisp facilitates _ _ _ _ in computer science learning.





✅ Correct Answer: 3

Which of the following symbol is used to represent the prompt in lisp?





✅ Correct Answer: 3

Which of the following is used to build the lisp procedures?





✅ Correct Answer: 3

Language model used in LISP is





✅ Correct Answer: 2

The files are specified as _ _ _ _ in LISP.





✅ Correct Answer: 1

Which primitive is used to define a procedure?





✅ Correct Answer: 1

Does value of an actual parameter change in the procedure?





✅ Correct Answer: 3

What is the output of the following LISP program? (defun b(p) (+ p p) ) * (setq z 1) * (b z)





✅ Correct Answer: 1

What will be output of the following LISP program? (defun b(z) (+ z z) ) * (setq z 1) * (write b z)





✅ Correct Answer: 2

What will be stored in Z at A & B? (defun b (z) z (Position A) (setf z '(u v)) ) * (setf z '(c d)) * (b z) * z (Position B)





✅ Correct Answer: 1

What is the output of the following LISP program? (defun raw(p) (if (equal p '(not cooked)) (setq q 'YES) (setq q 'NO))) (setq rice '(not cooked)) *(raw rice)





✅ Correct Answer: 1