Which is used to compile individual procedures?
Compile-file
ED
Compile
Load
View Answer
Correct Answer: C — Compile
Explanation:
Lisp provides a way to compile individual procedures by the use of compile.
10 practice sets · Page 1 of 1
Which is used to compile individual procedures?
Compile-file
ED
Compile
Load
Correct Answer: C — Compile
Explanation:
Lisp provides a way to compile individual procedures by the use of compile.
What is the correct syntax form of the given statement?
(compile-file )
(compile )
(compile-file
None of the mentioned
Correct Answer: C — (compile-file
Explanation:
In Syntax; source file specification comes instead of target-file. So, compile-file
What is the correct syntax form of the given statement?
(load )
(load )
(load)
None of the mentioned
Correct Answer: B — (load )
Explanation:
Load primitive is used to read from files.
What is the correct syntax form of the given statement?
(ed )
(ef )
(ed )
All of the mentioned
Correct Answer: A — (ed )
Explanation:
Thus the syntax of ED primitive is given.
What is produced from compile-file?
Text file
Binary file
Lsp file
All of the mentioned
Correct Answer: B — Binary file
Explanation:
Compile-file produces a binary file full of unintelligible computer instructions expressed by a bit sequences.
To which value does the lisp compiler is evaluated?
File
String
Compile-File
None of the mentioned
Correct Answer: C — Compile-File
Explanation:
Lisp compiler is used to evaluate a compile-file form.
Which has its own convention for doing the basic maneuvers?
Lisp
Compiler
Interpreter
Editor
Correct Answer: D — Editor
Explanation:
Editors have their own convention for doing basic maneuvers.
How the files are specified in lisp?
Strings
Characters
Booleans
None of the mentioned
Correct Answer: A — Strings
Explanation:
Files are specified as strings, which is one lisp's data type.
Which primitive is used to create or modify a specified file?
File
Manipulation
ED
None of the mentioned
Correct Answer: C — ED
Explanation:
To create or modify a file, we can use ED primitive.
Which translate the procedures into equivalent computer instructions?
File
Compile-file
Compiler
None of the mentioned
Correct Answer: B — Compile-file
Explanation:
Compile-file is mainly used to translate the procedures into equivalent computer instructions.