InterviewSolution
Saved Bookmarks
| 1. |
Write down the negation of compound statement.6 is divisible by 2 and 3. |
|
Answer» The given statement is compound statement then components are, P: 6 is divisible by 2 ~p: 6 is not divisible by 2 q: 6 is divisible by 3 ~q: 6 is not divisible by 3. (p ᴧ q)= 6 is divisible by 2 and 3. ~ (p ᴧ q) = ~p v ~q= 6 is neither divisible by 2 nor 3 |
|