PowerShell ISE is an Integrated Scripting Environment that is included with Windows 10. - Answers
True
Microsoft's PowerShell Script pane is an "automatic completion" feature that helps you develop
scripts quickly. - Answers False
Windows commands within PowerShell are as efficient as using an equivalent PowerShell cmdlet. -
Answers False
To find a cmdlet that obtains process values, use the Get-Command -noun Process command. -
Answers True
When creating and executing scripts in CentOS 7, you must change the permissions on the file before
running the new script. - Answers True
Where does the output appear when you run a script in the PowerShell ISE? - Answers Console pane
What key feature in the PowerShell ISE allows a user to display clickable menus of cmdlets,
parameters, parameter values, files, or folders that match the characters you type? - Answers
IntelliSense
What keyboard shortcut will allow you to launch a script directly from the PowerShell ISE? - Answers
F5
What specific configurable PowerShell script runs automatically each time the ISE starts? - Answers
Profile
The CD command is used in the command line to change the path of a directory, what is the
equivalent cmdlet in PowerShell? - Answers Set-Location
What syntax characters in PowerShell indicate optional items? - Answers Brackets
When a PowerShell user needs additional help regarding a cmdlet that will create a file, what
command syntax can be used to help obtain this information? - Answers Help "create file"
What is an alternative to the Help cmdlet when you need to locate a specific cmdlet? - Answers Get-
Command
What PowerShell cmdlet will allow you to arrange a table in a particular order? - Answers Sort-Object
When using filtering in PowerShell you need to know the comparison operators, what operator allows
you to see whether an identical value exists in a list of values? - Answers -contains
What PowerShell cmdlet will allow you to Select items to remain in a table after filtering out
unwanted items? - Answers Where-Object
What characters in PowerShell represent a dynamic variable that stores the current information being
piped to it? - Answers $_.
What character can you use to break cmdlets between parameters when using PowerShell? -
Answers Backtick
PowerShell cmdlet parameters will always be preceded by what character? - Answers Hyphen
What PowerShell command written with a trace parameter will enable script tracing? - Answers Set-
PSDebug
When you write a script, what type of line should you include to ensure that the script is run under
the correct shell? - Answers Header line
Before running a script on CentOS 7, what command will you need to modify the scripts permission? -
Answers Chmod
In CentOS 7 using an extension on script files is optional. However, some Linux system administrators
prefer to add a file extension to their scripts. What file extension is commonly used for this purpose? -
Answers .sh
What command in CentOS 7 can be used in a script to enable multiple executions of a set of
instructions while a certain condition exists? - Answers While
What command in CentOS 7 can be used in a script to execute a number of instructions based on a
maximum count you specify? - Answers For in
If a script is written for use in CentOS 7, how many times should a command line that is executed
multiple times be written? - Answers Only once
CentOS 7 scripts can utilize the if command in two different ways to set up decisions within scripts.
The first format is referred to as "if then fi". What is the second format? - Answers If else fi
How can a PowerShell ISE user include a suggestion from an IntelliSense menu in their script? -
Answers Double-click the suggestion