Multiple choice technology

In Windows PowerShell, operators are evaluated in the following precedence: () {}, @ $, !, [ ], ., &, ++ --, Unary + -, * / %, Binary + -, Comparison Operators, -and –or, |, > >>, =

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

PowerShell evaluates operators in the following precedence: parentheses and braces first, then subexpression operators (@ $), then logical not (!), then indexing and property access ([] .), then call operator (&), then increment/decrement (++ --), then unary operators, then multiplication/division/modulo, then addition/subtraction, then comparison operators, then logical -and -or, then pipelines (|), then redirection (> >>), then assignment (=). This matches standard operator precedence rules.