✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following program which finds the larger of two numbers:
larger(X,Y,Z):- X>Y, !, Z=X.larger(X,Y,Y):- X \= Y.
Which of the following queries return true?