Answered step by step
Verified Expert Solution
Question
1 Approved Answer
26. Consider the following bachelor Prolog program What would it be the INCORRECT result of the following query? bachelor(P):- male(P), not married(P) male(henry) male(tom) married(tom)
26. Consider the following bachelor Prolog program What would it be the "INCORRECT" result of the following query? bachelor(P):- male(P), not married(P) male(henry) male(tom) married(tom) A. 2- bachelor(henry) eS B. ?- bachelor(tom) no C.?- bachelor(Who) Who-henry D. ?- married(X) X-tom E. ?- male(P) no 27. Complete the second clause of the following Prolog program for member/2 where member(X, Y) checks whether X is an element (a member) of a list Y member(X,[XR]) member(X,[YIR]) A. member(X,R) B. member(X,Y) C. memberR) D. member(Y,R) E. member(X,Y)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started