Choose correct statement about arg1 of setq syntax.
It is a list
It is a symbol in which value is stored
It is an arithmetic operator
It is a primitive
View Answer
Correct Answer: B — It is a symbol in which value is stored
Explanation:
In (setq arg1 arg2), the arg1 is like a variable in which value is stored. It can be a symbol. The value of arg2 got stored in it.
