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) .
A) parent(jill, john)
B) sister(sue, sally)
C) sibling(sue, sally)
D) sibling(jill, sue)
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q2: List three items of information that would
Q3: Which of the following is a means
Q4: In programming languages that use + to
Q5: Show that the grammar below is
Q6: Which of the following is not associated
Q8: Which of the following is not a
Q9: Which of the following is an example
Q10: Which of the following is not associated
Q11: Rewrite the following instructions using a single
Q12: The following is a program segment