0
0
PowerShellscripting~5 mins

Logical operators (-and, -or, -not) in PowerShell - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the -and operator do in PowerShell?
The -and operator returns $true only if both conditions on its sides are true. It works like saying "and" in everyday language, meaning both things must happen.
Click to reveal answer
beginner
How does the -or operator work in PowerShell?
The -or operator returns $true if at least one of the conditions is true. It means "or" in normal talk, so if either side is true, the whole expression is true.
Click to reveal answer
beginner
Explain the purpose of the -not operator in PowerShell.
The -not operator reverses the truth value of a condition. If something is $true, -not makes it $false, and vice versa. It's like saying "not" in everyday language.
Click to reveal answer
beginner
What will this PowerShell expression return? <br>$true -and $false
It will return $false because -and needs both sides to be $true. Here, one side is $false, so the whole result is $false.
Click to reveal answer
intermediate
What is the result of this expression? <br>-not ($false -or $false)
The expression inside the parentheses ($false -or $false) is $false. Then -not reverses it to $true. So the final result is $true.
Click to reveal answer
Which operator returns $true only if both conditions are true?
A-or
B-and
C-not
D==
What does -not $true return?
A$true
BError
C$false
Dnull
If $a = $false and $b = $true, what is the result of $a -or $b?
A$true
Bnull
C$false
DError
Which operator would you use to check if a condition is NOT true?
A-not
B-and
C-or
D-eq
What is the result of $true -and ($false -or $true)?
AError
B$false
Cnull
D$true
Explain how the -and, -or, and -not operators work in PowerShell with simple examples.
Think about how you use 'and', 'or', and 'not' in everyday sentences.
You got /4 concepts.
    Describe a real-life situation where you might use -and and -or in a PowerShell script.
    Imagine checking if you can go outside based on weather and time.
    You got /4 concepts.