✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following Prolog program:
parent_of(john,mary).parent_of(john,peter).parent_of(susan,mary).What is the result of the following query?
?- findall(X, parent_of(john,X), L).