Set Membership/Truth Tables
DNF/CNF
Logic Operators
Miscellaneous
Off-Topic Computer Abbreviations
100

What is the truth table for ~P?

P | ~P
-------
F | T
T | F

100

What do DNF and CNF stand for?

Disjunctive Normal Form and Conjunctive Normal Form

100

~P is also known as...

Possible answers:
Negation
NOT

100

What is the proposition?

A statement that is either True or False, but not both

100

What does PC stand for?

Personal Computer

200

What is the truth table for P v Q?

P Q | P v Q
-------------
F F | F
F T | T
T F | T
T T | T

200

What is the DNF of:

a b | f
--------
0 0 | 0
0 1 | 0
1 0 | 1
1 1 | 0

(a ^ ~b)

200

P ^ Q is also known as...

Possible answers:
Conjunction
AND

200

What is the principle of duality?

Replace every True with a False & vise versa
Replace every ^ with a v & vise versa
~ remains the same

i.e. a ^ ~b = T becomes a v ~b = F

200

What does CD (not change directory) stand for?

Compact Disk

300

What is the truth table for P ⊕ Q?

P Q | P ⊕ Q
--------------
F F | F
F T | T
T F | T
T T | F

300

What is the dual of the DNF:
(~a ^ b ^ c) v (~a ^ ~b ^ c) v (a ^ ~b ^ ~c) v (a ^ b ^ c)

(~a v b v c) ^ (~a v ~b v c) ^ (a v ~b v ~c) ^ (a v b v c)

300

P v Q is also known as....

Possible answers:
Disjunction
OR

300

What is a tautology?

A statement that's always true

300
What does BIOS stand for?

Basic Input Output System

400

What is the truth table for P → Q?

Since P → Q can be written as ~P v Q, we get the truth table:
P Q | P → Q
--------------
F F | T
F T | T
T F | F
T T | T

400

What is the DNF of:
a b c | f
---------
0 0 0 | 1
0 0 1 | 1
0 1 0 | 0
0 1 1 | 1
1 0 0 | 0
1 0 1 | 0
1 1 0 | 0
1 1 1 | 1

(~a ^ ~b ^ ~c) v (~a ^ ~b ^ c) v (~a ^ b ^ c) v (a ^ b ^ c)

400

P → Q is also known as...

Implication

400

What is Russell's Paradox?

A paradox arises within naïve set theory by considering the set of all sets that are not members of themselves. Such a set appears to be a member of itself if and only if it is not a member of itself. Hence the paradox.

400

What does HTTP stand for?

Hypertext Transfer Protocol

500

What is the truth table for ~P ^ (P → Q)?

We can break this down into parts:
P Q | ~P | P → Q | ~P ^ (P → Q)
-------------------------------------
F F |  T   |     T    |       T
F T |  T   |     T    |       T
T F |  F   |     F    |       F
T T |  F   |     T    |       F

500

What is the CNF of:
a b c | f
---------
0 0 0 | 0
0 0 1 | 1
0 1 0 | 0
0 1 1 | 1
1 0 0 | 0
1 0 1 | 1
1 1 0 | 0
1 1 1 | 1

(a v b v c) ^ (a v ~b v c) ^ (~a v b v c) ^ (~a v ~b v c)

500

P → Q can also be written as...

~P v Q

500

P → Q ≡ ~Q → P is an example of what?

A contrapositive 

500

What does CAPTCHA stand for?

Computer Automated Public Turing Test to Tell Computers and Humans Apart

M
e
n
u