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?
Is LISP a case sensitive language?
Which of the following is part of basic syntax in LISP programming?
Symbol manipulation in LISP is called as _____
Lists can be formed from ____
Which of the following are general-purpose dialects of LISP?
What can be used to print “yes, no”?
Can write-line keyword be used for printing strings?
What will be the output of the following LISP statement?
What will be the output of the following LISP statement?
What will be the output of the following LISP statement?
What will be the output of the following LISP statement?
What will be the output of the following LISP statement?
............. is the notation used for writing LISP Syntax.
What does Lisp stands for?
What does Lisp stands for?
In lisp, what is meant by symbolic expression?
In lisp, what is meant by symbolic expression?
How many types of arguments are available in lisp?
The Lisp facilitates _ _ _ _ in computer science learning.
Which of the following symbol is used to represent the prompt in lisp?
Which of the following is used to build the lisp procedures?
Language model used in LISP is
The files are specified as _ _ _ _ in LISP.
Which primitive is used to define a procedure?
Does value of an actual parameter change in the procedure?
What is the output of the following LISP program? (defun b(p) (+ p p) ) * (setq z 1) * (b z)
What will be output of the following LISP program? (defun b(z) (+ z z) ) * (setq z 1) * (write b z)
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)
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)