College canteen planned to automate the Cafeteria orders for juices. There is a
machine that can serve different types of juices. The machine has an input button for
each of the three choices so that a customer can have the following options.
Mango juice with ice
Pineapple juice without ice
Mango and pineapple mixed juice without ice
Mango and pineapple mixed juice with ice
For all other inputs, the machine will not serve any juice. It is understood that the
default value of each input is 0. Design a truth table for the all possible input and
output and write the sum-of-product of the output function.
Answers
Answer: College canteen planned to automate the Cafeteria orders for juices , The machine has an input button for each of the three choices so that a customer can have the options
To find : Truth Table
Solution:
here is Truth Table :
INPUT
Mango Pineapple Ice Output
A B C
0 0 0 0
0 0 1 0
0 1 0 0
0 1 1 1 (A'BC)
1 0 0 0
1 0 1 1 (AB'C)
1 1 0 1 (ABC')
1 1 1 1 (ABC)
output = A'BC + AB'C + ABC' + ABC
Learn More:
what is the significance of truth table - Brainly.in
https://brainly.in/question/11196046