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

A family intends to purchase a smart phone depending on the criteria given below: • Quad core…

Computer Science20235 marksLong answer
A family intends to purchase a smart phone depending on the criteria given below: • Quad core processor with internal memory of 64 GB or more but not a resale phone OR • Resale phone with quad core processor but without warranty OR • Processor is not a quad core but with a warranty of 1 year and the internal memory is of 64 GB or more The inputs are:
INPUTS
PQuad core processor
MInternal memory of 64 GB or more
RResale phone
WWarranty of 1 year
(In all the above cases, 1 indicates yes and 0 indicates no.) Output: X [1 indicates purchased, 0 indicates not purchased for all cases] Draw the truth table for the inputs and outputs given above and write the SOP expression

Answer

Answer

AI
Inputs: P (quad core), M (memory >=64GB), R (resale), W (warranty of 1 year). Output X=1 when purchased. Condition 1: $P \cdot M \cdot R'$ (quad core, memory>=64GB, not resale) Condition 2: $R \cdot P \cdot W'$ (resale, quad core, no warranty) Condition 3: $P' \cdot W \cdot M$ (not quad core, warranty of 1 yr, memory>=64GB) Truth table (verified with the boolean tool):
PMRWX
00000
00010
00100
00110
01000
01011
01100
01111
10000
10010
10101
10110
11001
11011
11101
11110
SOP expression: $X = PMR' + PRW' + P'MW$
Boolean Algebra

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