Which has its own convention for doing the basic maneuvers?
Lisp
Compiler
Interpreter
Editor
View Answer
Correct Answer: D — Editor
Explanation:
Editors have their own convention for doing basic maneuvers.
Browse topic-based LISP practice sets.
186 practice sets · Page 8 of 10
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.
How many access procedures are available in lisp?
1
2
3
4
Correct Answer: C — 3
Explanation:
The access procedures available in lisp are constructors, readers and writers.
Which makes it easy to identify the first entry encountered that satisfies a given predicate?
Reusing
Revoking
Template
Filtering
Correct Answer: D — Filtering
Explanation:
Filtering makes it easy to identify the first entry encountered that satisfies a given predicate.
How many items are available in mapping primitives are there?
3
4
5
6
Correct Answer: C — 5
Explanation:
There are five items in mapping primitives. They are mapcar, remove-if, remove-if-not, count-if and find-if.
What is partly embedded in the knowledge of your programming for manipulating applications?
Programming cliches
Procedures
Abstraction
Data
Correct Answer: A — Programming cliches
Explanation:
The knowledge of programming is embedded partly in applicable templates called programming cliches.
Which process helps to build a large and complicated programs?
Abstraction
Mapping
Data abstraction
None of the mentioned
Correct Answer: C — Data abstraction
Explanation:
Data abstraction process helps to build a large and complicated programs.
Which constraint has the parameter that identifies where the constraint is coming from?
Binary
Secondary
Ternary
None of the mentioned
Correct Answer: C — Ternary
Explanation:
None.
Which functions are used to enforce constraints?
Conditional
Generic functions
Functions
None of the mentioned
Correct Answer: B — Generic functions
Explanation:
Generic functions are used to enforce constraints.
Which propagate probability bounds through logic boxes?
Constraint
Condition
List
Inference
Correct Answer: A — Constraint
Explanation:
Constraints propagate probability bounds through logic boxes.
What is the process of combining assertions and logical constraints?
List
Net
Inference net
Inference
Correct Answer: C — Inference net
Explanation:
When a group of assertions and logical constraints are combined, they form inference net.
Which is used to represent assertions and logical constraints?
Logic
Methods
Controls
Class
Correct Answer: D — Class
Explanation:
Classes represent assertions and logical constraints.
Which have the ability to propagate numbers through arithmetic boxes?
Condition
Constraint
Logic
None of the mentioned
Correct Answer: B — Constraint
Explanation:
Constraint propagate numbers through arithmetic boxes.
Which checks the evaluated key form against the unevaluated keys using EQL?
COND
CASE
NIL
SETF
Correct Answer: B — CASE
Explanation:
CASE checks the evaluated key form against the unevaluated keys using EQL and if the key is found, the corresponding clause is triggered.
Which has a template that calls for particularly peculiar argument evaluation?
COND
Consequent
Trigger
Sphere
Correct Answer: A — COND
Explanation:
COND is more versatile conditional and it has a template that calls for particularly peculiar argument evaluation.
What will happen if the value of all the test-forms are nil?
Nothing
COND form is nil
Both Nothing & COND form is nil
None of the mentioned
Correct Answer: B — COND form is nil
Explanation:
If all the test forms are NIL then conditional will also return NIL.
What is the value of last consequent form in the triggered clause?
Value of the entire COND
Trigger
Consequent
All of the mentioned
Correct Answer: A — Value of the entire COND
Explanation:
The value of the entire COND form is the value of the last consequent form in the triggered clause.
In clause what the zero or more additional forms are called?
Conditional
Consequents
Clause
None of the mentioned
Correct Answer: B — Consequents
Explanation:
It is used to move through the clauses and evaluating only the test form.