WGU C959 Modified latest updated version with 100% correct answers 2026-2027

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/133

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 8:57 PM on 6/5/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

134 Terms

1
New cards

What is the notation for subset?

2
New cards

A collection of objects is known as a

set

3
New cards

What is the notation for integers?

4
New cards

What is the notation for element?

5
New cards

What is the notation for set-roster?

{ }

6
New cards

Write the set-builder notation for, "Numbers whose square roots are an integer"

{ x | √x ∈ ℤ}

7
New cards

Write the set-builder notation for "the set of all x's, such that x is greater than 0"

{ x | x > 0}

8
New cards

T/F:

Order matters in ordered pairs?

True

9
New cards

In a Cartesian Product of two sets, every element of the CROSS PRODUCT is an

ordered pair

10
New cards

What is the Cartesian Product for:

{a,b} x {0,1}

A x B = { {a,1} , {a,0} , {b,1} , {b,0} }

11
New cards

Ordered pairs are _____ of the Cartesian Product

elements

12
New cards

A ______ is a subset between two different sets

relation

13
New cards

Give the general equation for Relations

(a,b) ∈ A x B

(i.e. (a,b) is the ordered pair and A x B are two different sets)

14
New cards

Describe in words what this formula means: (a,b) ∈ A x B

Ordered pair (a,b) are in the set resulting from A x B

15
New cards

A compound proposition is a tautology if the proposition is always _____

True

16
New cards

A compound proposition is a contradiction if the proposition is always _____

False

17
New cards

If p is False and q is True, solve this equation.

p → q

True

18
New cards

If an equation is show as this "p → q" and the hypothesis is false, then the answer to the question is _____

True

19
New cards

Give the truth table for ¬(p ↔ q)

F

T

T

F

20
New cards

What is the logical equivalence of ¬(p ∧ q) ≡ ?

(¬p ∨ ¬q)

21
New cards

What is the logical equivalence of ¬(p ∨ q) ≡ ?

(¬p ∧ ¬q)

22
New cards

What is the logical equivalence of p→q ≡ ?

(¬p ∨ q)

23
New cards

In Boolean Algebra the addition symbol is the same as what?

OR

24
New cards

The XOR operation outputs 1 when what?

Both inputs are different

(1 XOR 0 = 1)

(1 XOR 1 = 0)

25
New cards

Boolean multiplication is the same as what?

AND

26
New cards

The minterm must evaluate to what

1

27
New cards

0 NAND 1 =

1

28
New cards

1 NAND 1 =

0

29
New cards

0 NAND 0 =

1

30
New cards

The NAND gate computes the NAND operation:

x↑y

31
New cards

The NOR gate computes the NOR operation:

x↓y

32
New cards

The NAND gate outputs 0 if all inputs are _____

1

33
New cards

The NOR gate outputs 1 if all inputs are _____

0

34
New cards

The gate outputs 1 if all inputs are 0 and outputs _____

0

35
New cards

1 NOR 1 =

0

36
New cards

1 NOR 0 =

0

37
New cards

0 NOR 0 =

1

38
New cards

A two-input XOR gate (for "exclusive OR") outputs 1 if the input values differ. True or False

True

39
New cards

1 XOR 0 =

1

40
New cards

1 XOR 1 =

0

41
New cards

0 XOR 0 =

0

42
New cards

A two-input XNOR gate (for "exclusive NOR") outputs 1 if the input values are the same. True or False

True

43
New cards

1 XNOR 0 =

0

44
New cards

1 XNOR 1 =

1

45
New cards

0 XNOR 0 =

1

46
New cards

Which gate follows the same rules as Boolean multiplication?

AND

47
New cards

Which gate follows the same rules as Boolean addition?

OR

48
New cards

What is the maximum length of a cycle in a graph?

The amount of Vertices that connect.

49
New cards

The proposition p ⊕ q is true if...

Exactly one of the propositions p and q is true but not both

50
New cards

Give DeMorgans Law for QUANTIFIED STATEMENTS (there are 2 laws)

¬∀xP(x) ≡ ∃x¬P(x)

¬∃xP(x) ≡ ∀x¬P(x)

51
New cards

Use DeMorgans Law to solve: ¬∃x P(x)

∀x ¬P(x)

52
New cards

Use DeMorgans Law to solve: ¬∃x (P(x) ∨ Q(x))

∀x (¬P(x) ∧ ¬Q(x))

53
New cards

Use DeMorgans Law to solve: ¬∀x (P(x) ∧ Q(x))

∃x (¬P(x) ∨ ¬Q(x))

54
New cards

Is the variable y bound in the expression ∀xQ(x,y)?

No

55
New cards

Is the following logical expression a proposition: ∀z∃yQ(x,y,z)?

Why?

No. X is not bound

56
New cards

If the domain of a universal statement is small, it may be easiest to prove the statement by checking each element individually. A proof of this kind is called a _____

proof by exhaustion

57
New cards

A _____ is an assignment of values to variables that shows that a universal statement is false

counterexample

58
New cards

When are XNOR gates equal to 0?

When both inputs = 0

When both inputs = 1

59
New cards

The NAND operation outputs 1 for all combinations except for _____

1 NAND 1

60
New cards

contrapositive of a conditional statement

If not q, then not p

61
New cards

In a _______ conditional statement we assume the question is false, and then use the falsity to prove that the statement is possibly true

contradiction

62
New cards

Because the empty set has no elements, for any element a, a ∉ ∅ is _____

true

63
New cards

The number of elements in a set is referred to as the _____

cardinality

64
New cards

What is the cardinality of the set A = { 2, 4, 6, 10 }

|A| = 4

65
New cards

What is the cardinality of B = { 1, 3, 5, ... , 99 }

|B| = 50

66
New cards

Two sets are equal if they have exactly the same ______

elements

67
New cards

What is the notation for "The set of natural numbers:" (All integers greater than or equal to 0.)

N

68
New cards

What is the notation for "The set of rational numbers:"

Q

69
New cards

What is a rational number?

A number that can be written as a fraction, where the denominator does NOT equal 0

70
New cards

What is the notation for "The set of real numbers."

R

71
New cards

T/F:

-3 ∈ Z+

False

72
New cards

T/F:

0 ∈ Z+

False

73
New cards

T/F:

0 is a non-negative integer

True

74
New cards

T/F:

5 ∈ R+

True

75
New cards

T/F:

0 ∈ Q

True (0 is a rational number)

76
New cards

The only real numbers that satisfy |x| = x2 are what?

-1, 0, 1

77
New cards

What set matches this set: { x ∈ R : |x| = x2 }

{-1, 0 1}

78
New cards

If every element in A is also an element of B, then A is a ______ of B

subset

79
New cards

If there is an element of A that is not an element of B, then A is not a subset of B, denoted as A ⊈ B. If the universal set is U, then for every set A: (Write the relationship for this)

∅ ⊆ A ⊆ U

80
New cards

If A ⊆ B and there is an element of B that is not an element of A (i.e., A ≠ B), then A is a ______ of B

proper subset

81
New cards

What is the notation for proper subset?

82
New cards

If A ⊆ B and there is an element of B that is not an element of A (i.e., A ≠ B), then A is a proper subset of B, denoted as _____

A ⊂ B

83
New cards

A = { 3, 4, 5 }

B = { 4, 5, 3 }

A ⊆ B?

True or False?

True

84
New cards

A = { 3, 4, 5 }

B = { 4, 5, 3 }

A ⊂ B?

True or False?

False (the sets are equal, so A is not a proper subset of B)

85
New cards

C = { x ∈ Z: x is odd }

C ⊂ Z?

True or False

True (odd integers are a subset of all integers)

86
New cards

B = { 4, 5, 3 }

D = { 3, 5, 7, 9 }

B ⊆ D?

True or False

False (4 is an element of B, but 4 is not an element of D)

87
New cards

Is the following statement true?For any two sets, X and Y, if X ⊂ Y, then X ⊆ Y.

Yes

No

Yes (If X ⊂ Y, then every element of X is also an element of Y, so X ⊆ Y.)

88
New cards

Is the following statement true?For any two sets, X and Y, if X ⊆ Y, then X ⊂ Y.

Yes

No

No (It is possible that X = Y in which case X ⊆ Y, but X ⊄ Y)

89
New cards

A = { x ∈ Z: x is an integer multiple of 3 }

E = { 3, 6, 9 }

E ⊆ A?

True or False

True

90
New cards

A = { x ∈ Z: x is an integer multiple of 3 }

E = { 3, 6, 9 }

A ⊂ E?

True or False

False

91
New cards

A = { x ∈ Z: x is an integer multiple of 3 }

E = { 3, 6, 9 }

E ∈ A?

True or False

False (E is not an element of A. All the elements of A are numbers, not sets. However, it is true that E ⊂ A)

92
New cards

A = { x ∈ Z: x is an integer multiple of 3 }

15 ⊂ A?

True or False

False (15 is not a set, so 15 can not be a subset of any set)

93
New cards

A = { x ∈ Z: x is an integer multiple of 3 }

{15} ⊂ A?

True or False

True (15 is now considered a set because of the brackets around 15, so this statement is true)

94
New cards

A = { x ∈ Z: x is an integer multiple of 3 }

∅ ⊂ A?

True or False

True (The empty set is a subset of every set)

95
New cards

A = { x ∈ Z: x is an integer multiple of 3 }

A ⊆ A?

True or False

True (Every set is a subset of itself)

96
New cards

B = { x ∈ Z: x is a perfect square }

∅ ∈ B?

True or False

False (All elements in B are numbers, not sets)

97
New cards

E = { 3, 6, 9 }

F = { 4, 6, 16 }

|E| = |F|?

True or False

True (the cardinality of F and E are the same)

98
New cards

B = { x ∈ Z: x is a perfect square }

B is a finite set?

True or False

False (There is an infinite number of perfect squares)

99
New cards

A = {2, 4, 6, 8}

B = {x ∈ Z: x is even and 0 < x < 10}

A ⊂ B?

True or False

False (A = B. There is no element of B that is not also an element of A)

100
New cards

A = {2, 4, 6, 8}

C = {x ∈ Z: x is even and 0 < x ≤ 10}

A ⊂ C?

True or False

True (Every element of A is also an element of C. Also 10 ∈ C and 10 ∉ A)