Think of a way to write addition of four numbers using maximum possible braces?
(+ 1 2 3 4)
(+ (+ 1 2) (+ 3 4))
(+ 1 (+ 2 (+ 3 (4))))
(+ 1 2 (+ 3 4))
6 practice sets · Page 1 of 1
Think of a way to write addition of four numbers using maximum possible braces?
(+ 1 2 3 4)
(+ (+ 1 2) (+ 3 4))
(+ 1 (+ 2 (+ 3 (4))))
(+ 1 2 (+ 3 4))
Can LISP programs be nested?
Yes
No
What is the basic syntax of LISP (Note: arg means argument here)
( ...)
( )
( )
( ... )
How many arguments do a single LISP program has?
One
Two
Any number of arguments
Three
Arguments are ____ a part of LISP Syntax.
sometimes
always
vever
not considered as
Which of the following is part of basic syntax in LISP programming?
Primitive
NULL
#include