InterviewSolution
Saved Bookmarks
| 1. |
Mention What Is The Difference Between = And = = In Prolog? |
|
Answer» The “=” OPERATOR in Prolog is actually a predicate that stands for UNIFICATION. This operator “= =” means the two terms are not IDENTICAL. Unification does not take PLACE even if this SUCCEEDS. The “=” operator in Prolog is actually a predicate that stands for unification. This operator “= =” means the two terms are not identical. Unification does not take place even if this succeeds. |
|