What do the logical operators AND, OR, XOR and NOT do?

AND (both conditions on either side of the AND operation MUST be satisfied for the IF function to work)
OR (either condition on each side of the OR operation MUST be satisfied for the IF function to work)
NOT (used when something needs to be displayed UNLESS a value is a certain amount/type/name etc.)
XOR (used when exclusively ONE of the conditions has to be met – not both! This is where XOR and OR differ.)

CD

Related Computing A Level answers

All answers ▸

Write a Pseudocode function that returns the factorial of an integer input.


What are higher order functions in functional programming? How does the 'map' function work and why is it a higher order function?


How to manually convert a number from decimal into binary?


Simplify the following Boolean expression: ¬(AvB) v ¬(CvD) v ¬A^(BvC) v (¬A^A)