SEARCH
🇬🇧
MEM
O
RY
.COM
4.37.48
Guest
Log In
Â
Homepage
0
0
0
0
0
Create Course
Courses
Last Played
Dashboard
Notifications
Classrooms
Folders
Exams
Custom Exams
Help
Leaderboard
Shop
Awards
Forum
Friends
Subjects
Dark mode
User ID: 999999
Version: 4.37.48
www.memory.com
You are in browse mode. You must login to use
MEM
O
RY
  Log in to start
Index
 »Â
Computer Science AQA A level
 »Â
Fundamentals Of Computer Systsems
 »Â
Boolean (NEED)
level: Boolean (NEED)
Questions and Answers List
level questions: Boolean (NEED)
Question
Answer
What does this boolean identity simplify down to: X . 1
X
What does this boolean identity simplify down to: X . 0
0
What does this boolean identity simplify down to: X + 1
1
What does this boolean identity simplify down to: X + 0
X
What does this boolean identity simplify down to: _ _ X
X
What does this boolean identity simplify down to: X . X
X
What does this boolean identity simplify down to: X + X
X
What does this boolean identity simplify down to: _ X . X
0
What does this boolean identity simplify down to: _ X + X
1
State what the commutative rule is
For AND and OR, it doesnt matter which side of the operator an operand is on
Give an example of what the commutative rule is in action
X + Y = Y + X
What is the associative rule?
A law that allows the removal of brackets from an expression and regrouping of the variables of alike operations
Give an example of the associative rule
X + (Y + Z) = (X + Y) + Z = X + Y + Z
Represent an XOR as a boolean expression
or (X + Y) . NOT(X . Y)
Give an example of absrption law
B + (B . C) B
Whats the order of operations
Brackets Not And Or
Distrubtive law
Allow of factorising or multiplying an expression
Simplify (X + Y) . (X + ( NOT Y ))
D