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

A training institute intends to give scholarships to its students as per the criteria given below …

Computer Science20185 marksLong answer
A training institute intends to give scholarships to its students as per the criteria given below : • The student has excellent academic record but is financially weak. OR • The student does not have an excellent academic record and belongs to a backward class. OR • The student does not have an excellent academic record and is physically impaired. The inputs are:
INPUTS
AHas excellent academic record
FFinancially sound
CBelongs to a backward class
IIs physically impaired
(In all the above cases 1 indicates yes and 0 indicates no). Output : X [1 indicates yes, 0 indicates no for all cases] Draw the truth table for the inputs and outputs given above and write the SOP expression for $X(A,F,C,I)$.

Answer

Answer

AI
Let X=1 mean the student gets the scholarship. From the criteria: $X = A.F' + A'.C + A'.I$, where $A.F'$ means 'excellent record (A=1) but financially weak (F=0, i.e. NOT financially sound)', $A'.C$ means 'not an excellent record and belongs to a backward class', $A'.I$ means 'not an excellent record and is physically impaired'. Truth table (columns A, F, C, I; verified with the boolean tool):
AFCIX
00000
00011
00101
00111
01000
01011
01101
01111
10001
10011
10101
10111
11000
11010
11100
11110
SOP expression: $X(A,F,C,I) = A.F' + A'.C + A'.I$
Boolean Algebra

From ISC 2018 Computer Science Paper 1, question 5(a).