**What is Placement Strategy and its types?**
Placement Strategy refers to how you decide where to run your compute resources, like virtual machines or containers.\
\
There are three main placement group strategies:
- **Cluster:** Places instances on the same underlying hardware as possible. This is ideal for workloads that benefit from low latency network communication.
- **Spread:** Distributes instances across different hardware within the Availability Zone. This helps to improve fault tolerance as a hardware failure is less likely to impact all your instances.
- **Partition:** Creates isolated groups of instances within an Availability Zone. This can be useful for security-sensitive workloads.