Multiple choice technology

What is the correct order in which PowerShell tries to resolve the commands?

  1. aliases, functions, CmdLets, scripts, executables, and normal files

  2. aliases, CmdLets, functions ,scripts, executables, and normal files

  3. aliases, CmdLets, functions , executables, scripts, and normal files

  4. aliases, scripts, CmdLets, functions , executables, and normal files

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

PowerShell command resolution order is: aliases first (fastest), then functions, then CmdLets, then scripts, external executables, and finally normal files. Aliases override everything else for user convenience.