Google News
logo
Pega - Interview Questions
Differentiate between Decision Table and Decision Tree.
Decision Table :
 
* The logic implemented in the decision table is if, else if condition.
* In the decision table, if the first condition is true, it will not check the remaining conditions/if the first condition is false, then only it will check the next condition.
* For simple logic, we can go to the decision table.

Decision Tree :
 
* The logic implemented in Decision Tree is if, if condition.
* In a decision tree, if the first condition is true or false, it will check all conditions and it will return results.
* For simple logic, we can go for a decision tree.
Advertisement