NIMCET 2007 — Computer PYQ
NIMCET | Computer | 2007If p is false, then p q is :
Choose the correct answer:
- A.
0
- B.
True
(Correct Answer) - C.
False
- D.
Cannot say
True
Explanation
Step 1: Understand the Logical Operator
The expression p→q represents a conditional statement (also known as an implication), which translates to "If p, then q".
p is called the hypothesis or antecedent.
q is called the conclusion or consequent.
Step 2: Review the Truth Table for Implication
A conditional statement p→q is only considered False when the premise p is True, but the conclusion q turns out to be False. In all other scenarios, the statement evaluates to True.
Here is the standard truth table for p→q:
p | q | p→q |
True | True | True |
True | False | False |
False | True | True |
False | False | True |
Step 3: Apply the Given Conditions
The problem specifically states that p is false.
Looking at the truth table, whenever the antecedent p is False, the conditional implication p→q automatically results in True, completely independent of whether q is true or false. This mathematical concept is often referred to as being vacuously true.
If p=False⟹(p→q)=True
Conclusion
The truth value of p→q when p is false is True.
Correct Answer: (b) True

