# Lab 2 (Part 2) - Exercise 8
## Question
1. Find the logic expression for given waveform?
## Solution
* Expression in SOP form is `Y = A'.B.C' + A'.B.C + A.B.C + A.B.C'`
* Final Expression after solving K-Map is `Y = B`, which is implemented here.
## Truth Table for expression `Y = A'.B.C' + A'.B.C + A.B.C + A.B.C'`
| A | B | C | Y |
|---|---|---|---|
| 0 | 0 | 0 | 0 |
| 0 | 0 | 1 | 0 |
| 0 | 1 | 0 | 1 |
| 0 | 1 | 1 | 1 |
| 1 | 0 | 0 | 0 |
| 1 | 0 | 1 | 0 |
| 1 | 1 | 0 | 1 |
| 1 | 1 | 1 | 1 |