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.

Answer Posted / abrar

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

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of in c?

583


What is the most efficient way to count the number of bits which are set in an integer?

595


How do you initialize pointer variables?

616


What are the c keywords?

752


Is int a keyword in c?

559






why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above

656


What are the usage of pointer in c?

708


What is infinite loop?

632


What are categories used for in c?

573


What is a structure in c language. how to initialise a structure in c?

611


What are global variables and how do you declare them?

623


What is the use of structure padding in c?

567


What are the 3 types of structures?

574


Explain the use of function toupper() with and example code?

657


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

1742