1 answer
2
4 answers
11
The proposition $p \wedge (\sim p \vee q)$ is:a tautologylogically equivalent to $p \wedge q$logically equivalent to $p \vee q$a contradictionnone of the above
7 answers
12
Which of the following well-formed formulas are equivalent?$P \rightarrow Q$$\neg Q \rightarrow \neg P$$\neg P \vee Q$$\neg Q \rightarrow P$
9 answers
14
1 answer
17
p ->(q->r). Could you please tell me how it is a tautology?
1 answer
18
1 answer
19
1 answer
21
Isn’t the “No of independent rows”= RAnk of matrix?
1 answer
22
2 answers
23
Why“This statement is true” is proposition while “This statement is false” is liar paradox?Aren’t both statements supposed to be liar paradox ?
2 answers
26
Why "Birds can't fly" and "Every bird can't fly" are not same?
0 answers
27
int sum(int A[], int n) { int sum = 0, i; for(i = 0; i< n; i++) sum = sum + A[i]; return sum; } What is the space complexity? Select one: a. 2n + 8 b. 2n + 16 c. n^2 d. n...