Complete the code to install the module named 'Az'.
Install-Module -Name [1]The correct module name to install is Az. This is the official Azure PowerShell module.
Complete the code to install the module 'PSReadLine' without asking for confirmation.
Install-Module -Name PSReadLine -[1]The -Force parameter installs the module without prompting for confirmation.
Fix the error in the code to install the module 'Pester' for the current user only.
Install-Module -Name Pester -Scope [1]The correct scope to install the module only for the current user is CurrentUser.
Fill both blanks to install the module 'Az.Accounts' and allow pre-release versions.
Install-Module -Name [1] -[2]
Use Az.Accounts as the module name and -AllowPrerelease to allow pre-release versions.
Fill all three blanks to install the module 'PSGallery' from the repository 'PSGallery' and force the installation.
Install-Module -Name [1] -Repository [2] -[3]
The module name and repository are both 'PSGallery', and -Force forces the installation.