Multiple choice technology

The statement “PowerShell Commands are not Text-based rather Object-based” is true/false?

  1. True

  2. False

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

To solve this question, the user needs to have knowledge about PowerShell commands and their working mechanism.

The statement "PowerShell commands are not text-based rather object-based" is TRUE.

Explanation:

PowerShell is an object-oriented shell and scripting language that is built on top of the .NET Framework. PowerShell commands are not text-based like other shells, such as the Command Prompt in Windows. Instead, PowerShell commands are object-based, which means that they work with .NET objects.

In PowerShell, every command returns an object, which can be used in a pipeline to perform various operations. These objects can be manipulated, formatted, and filtered using PowerShell cmdlets. Therefore, the statement "PowerShell commands are not text-based rather object-based" is true.

Option A is correct.

The Answer is: A