+1 vote
in Prolog by
Mention What Is The Difference Between Prolog And Normal Programming Language?

1 Answer

0 votes
by
Prolog: It is a “declarative programming” language which means that you have to specify the goals, but not the strategy to reach the goal. It figures it out on its own.

Normal Programming language: Languages like C/C++/Java/Python are imperative (IP) languages that does specify instructions of how to reach some goal, but leaving the real goal implicit

Related questions

0 votes
asked Mar 3, 2021 in Prolog by SakshiSharma
+1 vote
asked Mar 3, 2021 in Prolog by SakshiSharma
...