What is the output of the given statement?
* (defstruct triangle (base 0) (altitude 0))
* (defun area (figure) (cond ((triangle-p figure) (* 1/2 (triangle-base figure) (triangle-altitude figure)))))
* (setf triangle (make-triangle :base 2 :altitude 3))
* (area triangle)
a) Triangle
b) 7
c) 6
d) 10
Answer Posted / chaitanya
c
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain List of artificial intelligence projects?
What does the language of fopl consist of?
Explain List of programming languages for artificial intelligence?
What are the different nlp tasks deep learning can be applied?
What is the output of the given statement? * (defclass article() ((title :accessor article-title :initarg :title) (author :accessor article-author :initarg :author))) * (defclass computer-article (article) ()) * (defclass business-article (article) ()) * (defclass political-article (article) ()) * (setf articles (list (make-instance ‘business-article :title “Memory Prices down”))) a) Business article b) Political article c) Business article