Bird
0
0

Which command correctly loads a PowerShell module named Utils into the current session?

easy📝 Syntax Q3 of 15
PowerShell - Modules and Script Organization
Which command correctly loads a PowerShell module named Utils into the current session?
AAdd-Module Utils
BLoad-Module Utils
CImport-Module Utils
DUse-Module Utils
Step-by-Step Solution
Solution:
  1. Step 1: Recall module import syntax

    The standard cmdlet to load modules is Import-Module.
  2. Step 2: Evaluate options

    Only 'Import-Module Utils' is valid PowerShell syntax.
  3. Final Answer:

    Import-Module Utils -> Option C
  4. Quick Check:

    Import-Module is the correct cmdlet [OK]
Quick Trick: Use Import-Module to load modules [OK]
Common Mistakes:
  • Using non-existent cmdlets like Load-Module
  • Confusing Add-Module with Import-Module
  • Assuming Use-Module is valid

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More PowerShell Quizzes