What are the pros and cons of using a decision table versus a decision tree
What will be an ideal response?
Like a decision table, a decision tree shows all combinations of conditions and outcomes. The main difference is the graphical format, which many viewers find easier to interpret.
Whether to use a decision table or a decision tree often is a matter of personal preference. A decision table might be a better way to handle complex combinations of conditions. On the other hand, a decision tree is an effective way to describe a relatively simple process.
You might also like to view...
Suppose you want to create a squad array with four Pixie objects. Which definition is correct?
A. new Pixie{} = squad[new Pixie[pixie01... pixie04]; B. Pixie[] squad = new Pixie{pixie = 0; pixie < 5 }; C. new squad[] Pixie = {pixie01, pixie02, pixie03 , pixie04}; D. Pixie[] squad = new Pixie[] {pixie01, pixie02, pixie03 , pixie04};
List the four elements of the design model.
What will be an ideal response?