InterviewSolution
Saved Bookmarks
| 1. |
If p, q,r are the statements with truth values T, F, T respectively then find the truth value of `(r^^q ) harr (~p)` |
|
Answer» We have `(r ^^ q) harr (~p)` `-=(T^^F) harr (~T)` `-=F harr F` `-=T` `:.` The truth value of the given statement is T. |
|