InterviewSolution
Saved Bookmarks
| 1. |
Rewrite the statement in the form of conditional statement.The square of an odd number is odd. |
|
Answer» In the conditional statement, expression is If p, then q Now, The given statement p and q are p: The number is odd. q: The square of odd number is odd. Therefore, If the number is odd, then its square is odd number. |
|