

Given below are two statements
p : 25 is a multiple of 5.
q : 25 is a multiple of 8.
Using And Connectivity
The compound statement is written as p ∧ q
Since p is True and q is False
So p ∧ q = False (since p ∧ q is True if both p and q are True otherwise it is False)
Using OR Connectivity
The compound statement is written as p ∨ q
Since p is True and q is False
So p ∨ q = True (since p ∨ q is False if both p and q are False otherwise it is True)
