retagged by
4,426 views
6 votes
6 votes

A rule in a limited entry decision table is a

  1. row of the table consisting of condition entries
  2. row of the table consisting of action entries
  3. column of the table consisting of condition entries and the corresponding action entries
  4. columns of the table consisting of conditions of the stub
retagged by

2 Answers

8 votes
8 votes

Answer is C : Column of the table consisting of condition entries and corresponding action entries

A decision table is an excellent tool to use in both testing and requirements management. Essentially it is a structured exercise to formulate requirements when dealing with complex business rules. Decision tables are used to model complicated logic.

Can look at it for more depth : https://en.wikipedia.org/wiki/Decision_table

Answer:

Related questions

13 votes
13 votes
3 answers
1
go_editor asked Jun 10, 2016
5,097 views
Djikstra’s algorithm is used toCreate LSAsFlood an internet with informationCalculate the routing tablesCreate a link state database
10 votes
10 votes
3 answers
2
go_editor asked Jun 10, 2016
10,619 views
The time taken by binary search algorithm to search a key in a sorted array of $n$ elements is$O\: (\log_2 \: n)$$O \: (n)$$O \: (n \: \log_2 \: n)$$O \: (n^2)$
7 votes
7 votes
2 answers
3
go_editor asked Jun 10, 2016
2,174 views
The average case and worst case complexities for Merge sort algorithm are$O \: (n^2), O\: (n^2)$$O \: (n^2), O\: (n \log_2 n)$$ O\: (n \log_2 n), O \: (n^2)$$ O\: (n \lo...
6 votes
6 votes
3 answers
4
go_editor asked Jun 10, 2016
6,486 views
Selection sort algorithm design technique is an example ofGreedy methodDivide-and-conquerDynamic ProgrammingBacktracking