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
What is a method in c?
How do I use strcmp?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What is spark map function?
What does. int *x[](); means ?
What are the ways to a null pointer can use in c programming language?
What should malloc(0) do?
What is bubble sort in c?
What is array in c with example?
Why we use void main in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Describe the difference between = and == symbols in c programming?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What is sorting in c plus plus?