What value will assigned, if there is no argument marked by a matching keyword?
T
NIL
False
Both NIL & False
Answer and explanation
If there is no argument marked by a matching keyword, the corresponding keyword parameter is bound to NIL.
ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
5 practice sets · Page 1 of 1
What value will assigned, if there is no argument marked by a matching keyword?
T
NIL
False
Both NIL & False
If there is no argument marked by a matching keyword, the corresponding keyword parameter is bound to NIL.
Which can appear without an initial form?
Parameter
Block parameter
Optional parameter
Aux parameter
An aux parameter can appear without an initial form, in which case there are no surrounding parentheses.
Which eliminate the need for many auxiliaries?
Parameters
Block parameters
Optional parameters
All of the mentioned
None.
Which allow procedures to use themselves again?
Recursion
Reuse
Reintiate
None of the mentioned
Recursion allows procedures to use themselves again and again.
Which is bounded to a list of all unaccounted argument values?
REST
&REST
RAISE
&RAISE
A rest parameter will be marked by &REST and it is bounded to a list of all unaccounted argument values.