adplus-dvertising

Welcome to the LISP Programming MCQs Page

Dive deep into the fascinating world of LISP Programming with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of LISP Programming, a crucial aspect of Artificial Intelligence. In this section, you will encounter a diverse range of MCQs that cover various aspects of LISP Programming, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within Artificial Intelligence.

frame-decoration

Check out the MCQs below to embark on an enriching journey through LISP Programming. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of Artificial Intelligence.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of LISP Programming. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

LISP Programming MCQs | Page 37 of 38

Q361.
Which is used to represent assertions and logical constraints?
Discuss
Answer: (d).Class
Q362.
What is the process of combining assertions and logical constraints?
Discuss
Answer: (c).Inference net
Q363.
Which propagate probability bounds through logic boxes?
Discuss
Answer: (a).Constraint
Q364.
Which functions are used to enforce constraints?
Discuss
Answer: (b).Generic functions
Q365.
What is the output of the given statement?
span class="sy0"> * (defclass assertion () 
  ((name :accessor assertion-name :initarg :name) 
  (lower-bound :accessor assertion-lower-bound :initform 0) 
  (upper-bound :accessor assertion-upper-bound :initform 1) 
  (constraints :accessor assertion-constraints :initform nil)))
Discuss
Answer: (c).Standard-class assertion
Q366.
What is the output of the given statement?
span class="sy0"> * (defclass constraint () ((name :accessor constraint-name :initarg :name) 
  (output :accessor constraint-output)))
* (defclass binary-constraint (constraint) ((input :accessor constraint-input)))
* (defclass ternary-constraint (constraint) ((input-a :accessor constraint-input-a) 
  (input-b :accessor constraint-input-b)))
* (defclass not-box (binary-constraint) ())
* (defclass or-box (ternary-constraint) ())
* (defclass and-box (ternary-constraint) ())
Discuss
Answer: (a).And-box
Q367.
What is the output of the given statement?
span class="sy0"> * (defmethod connect2 ((c constraint) (i assertion) (o assertion)) 
  (setf (constraint-input c) i) 
  (setf (constraint-output c) o) 
  (push c (assertion-constraints i)) 
  (push c (assertion-constraints o)))
Discuss
Answer: (d).None of the mentioned
Q368.
What is the output of the given statement?
span class="sy0"> * (let ((assertions (list (make-instance 'assertion :name 'broker1) 
  (make-instance 'assertion :name 'broker2) 
  (make-instance 'assertion :name 'broker-opinion) 
  (constraints (list (make-instance 'or-box :name 'broker-constraint))
Discuss
Answer: (d).Error
Q369.
Which constraint has the parameter that identifies where the constraint is coming from?
Discuss
Answer: (c).Ternary
Q370.
Which procedure is used as key element in a backward chaining algorithm?
Discuss
Answer: (b).Unification matching

Suggested Topics

Are you eager to expand your knowledge beyond Artificial Intelligence? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!