PRASHNIKAप्रश्निका
Back to the paper

A shopping mall allows customers to shop using cash or credit card of any nationalised bank. It…

Computer Science20235 marksLong answer
A shopping mall allows customers to shop using cash or credit card of any nationalised bank. It awards bonus points to their customers on the basis of criteria given below: • The customer is an employee of the shopping mall and makes the payment using a credit card OR • The customer shops items which carry bonus points and makes the payment using a credit card with a shopping amount of less than ₹10,000/- OR • The customer is not an employee of the shopping mall and makes the payment not through a credit card but in cash for the shopping amount above ₹10,000/- The inputs are:
INPUTS
CPayment through a credit card
AShopping amount is above ₹10,000/-
EThe customer is an employee of the shopping mall
IItem carries a bonus point
(In all the above cases, 1 indicates yes and 0 indicates no.) Output: X [1 indicates bonus point awarded, 0 indicates bonus point not awarded for all cases] Draw the truth table for the inputs and outputs given above and write the POS expression for $X (C, A, E, I)$.

Answer

Answer

AI
From the three criteria, bonus points are awarded ($X = 1$) when: 1. employee and credit card: $C = 1, E = 1$ (any A, I) 2. bonus item, credit card, amount less than ₹10,000: $I = 1, C = 1, A = 0$ (any E) 3. not an employee, cash (not credit card), amount above ₹10,000: $E = 0, C = 0, A = 1$ (any I) So $X = CE + CA'I + C'AE'$. Truth table:
CAEIX
00000
00010
00100
00110
01001
01011
01100
01110
10000
10011
10101
10111
11000
11010
11101
11111
The POS expression is the product of the maxterms (rows where $X = 0$): $X(C, A, E, I) = \pi(0, 1, 2, 3, 6, 7, 8, 12, 13)$ $= (C + A + E + I)(C + A + E + I')(C + A + E' + I)(C + A + E' + I')(C + A' + E' + I)(C + A' + E' + I')(C' + A + E + I)(C' + A' + E + I)(C' + A' + E + I')$ (This reduces to $X = (C + A)(C + E')(C' + A' + E)(A + E + I)$.)
Boolean Algebra

From ISC 2023 Computer Science Paper 1, question 4(i).