Examlex

Solved

Which of the Following Can Prolog Conclude from the Following

question 7

Multiple Choice

Which of the following can Prolog conclude from the following program? parent(jill,sue) .
Parent(jill,sally) .
Parent(john,sue) .
Parent(john,sally) .
Sibling(X,Y) :- parent(Z,X) ,parent(Z,Y) .


Definitions:

Related Questions