Multiple choice technology

What are the different ways by default available in Windows PowerShell to hold values in objects that can be used inside the script for reference?

  1. Variables

  2. Arrays

  3. Hash Table

  4. All of the above

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

PowerShell provides variables for single values, arrays for ordered collections, and hash tables for key-value pairs. All three are fundamental data structures available by default for storing and referencing script data.