A marketing company wishes to construct a decision table to
decide how to treat clients according to three
characteristics: Gender, City Dweller, and age group: A
(under 30), B (between 30 and 60), C (over 60). The company
has four products (W, X, Y and Z) to test market. Product W
will appeal to female city dwellers. Product X will appeal
to young females. Product Y will appeal to Male middle aged
shoppers who do not live in cities. Product Z will appeal to
all but older females.

Answers were Sorted based on User's Feedback



A marketing company wishes to construct a decision table to decide how to treat clients according ..

Answer / abrar

Decision Tables *
Example scenario: “A marketing company wishes to construct a decision table to decide how to treat clients according to three characteristics: Gender, City Dweller, and age group: A (under 30), B (between 30 and 60), C (over 60). The company has four products (W, X, Y and Z) to test market. Product W will appeal to female city dwellers. Product X will appeal to young females. Product Y will appeal to Male middle aged shoppers who do not live in cities. Product Z will appeal to all but older females.”

Decision tables are used to model complicated programming logic. They can make it easy to see that all possible combinations of conditions have been considered; when conditions are missed, it is easy to see this. The tables are composed of 4 parts: conditions, actions, condition alternatives (each column is a rule), and actions for the rules.

The process used to create a decision table is the following:
Identify conditions and their alternative values.
There are 3 conditions: gender, city dweller, and age group. Put these into table as 3 rows in upper left side.
Gender’s alternative values are: F and M.
City dweller’s alternative values are: Y and N
Age group’s alternative values are: A, B, and C
Compute max. number of rules.
Determine the product of number of alternative values for each condition.
2 x 2 x 3 = 12.
Fill table on upper right side with one column for each unique combination of these alternative values. Label each column using increasing numbers 1-12 corresponding to the 12 rules. For example, the first column (rule 1) corresponds to F, Y, and A. Rule 2 corresponds to M, Y, and A. Rule 3 corresponds to F, N, and A. Rule 4 corresponds to M, N, and A. Rule 5 corresponds to F, Y, and B. Rule 6 corresponds to M, Y, and B and so on.
Identify possible actions
Market product W, X, Y, or Z. Put these into table as 4 rows in lower left side.
Define each of the actions to take given each rule.
For example, for rule 1 where it is F, Y, and A; we see from the above example scenario that products W, X, and Z will appeal. Therefore, we put an ‘X’ into the table’s intersection of column 1 and the rows that correspond to the actions: market product W, market product X, and market product Z.


1
2
3
4
5
6
7
8
9
10
11
12
Gender
F
M
F
M
F
M
F
M
F
M
F
M
City
Y
Y
N
N
Y
Y
N
N
Y
Y
N
N
Age
A
A
A
A
B
B
B
B
C
C
C
C
MarketW
X



X



X



MarketX
X

X









MarketY







X




MarketZ
X
X
X
X
X
X
X
X

X

X

Verify that the actions given to each rule are correct.
Simplify the table.
Determine if there are rules (columns) that represent impossible situations. If so, remove those columns. There are no impossible situations in this example.
Determine if there are rules (columns) that have the same actions. If so, determine if these are rules that are identical except for one condition and for that one condition, all possible values of this condition are present in the rules in these columns. In the example scenario, columns 2, 4, 6, 7, 10, and 12 have the same action. Of these columns: 2, 6, and 10 are identical except for one condition: age group. The gender is M and they are city dwellers. The age group is A for rule 2, B for rule 6, and C for rule 10. Therefore, all possible values of condition ‘age group’ are present. For rules 2, 6, and 10; the age group is a “don’t care”. These 3 columns can be collapsed into one column and a hyphen is put into the age group location to signify that we don’t care what the value of the age group is, we will treat all male city dwellers the same: market product Z.



1
2
3
4
5
6
7
8
9
10
Gender
F
M
F
M
F
M
F
M
F
M
City
Y
Y
N
N
Y
N
N
Y
N
N
Age
A

A
A
B
B
B
C
C
C
MarketW
X



X


X


MarketX
X

X







MarketY






X



MarketZ
X
X
X
X
X
X
X


X


* Example and material taken from www.saintmarys.edu/~psmith/417lab3b.html

Is This Answer Correct ?    3 Yes 3 No

A marketing company wishes to construct a decision table to decide how to treat clients according ..

Answer / abrar

https://classes.soe.ucsc.edu/cmps115/Spring05/supplements/DecisionTables.htm

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What does %c mean in c?

0 Answers  


What is the best style for code layout in c?

0 Answers  


How do I convert a string to all upper or lower case?

0 Answers  


If input is 123 then how to print 100 and 20 and 3 seperately?

4 Answers  


What is variable and explain rules to declare variable in c?

0 Answers  






what is the main use of c where it can use the c

2 Answers   Infosys,


Who developed c language and when?

0 Answers  


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

0 Answers   Wilco,


When the macros gets expanded?

0 Answers  


What is merge sort in c?

0 Answers  


Why does notstrcat(string, "!");Work?

0 Answers  


What are the advantages and disadvantages of c language?

0 Answers  


Categories