A parks department wants a throwaway test stack for a permit portal and a stable production stack, and needs to delete the entire test environment in one action without touching production. How should the team organize those Azure resources?
Select an answer to reveal the explanation.
Short Explanation
Think of a resource group like a labeled bin for related stuff. When the test bin is emptied, only what was in that bin goes away. Keep production in its own bin so a cleanup never knocks over the live portal.
Full Explanation
A resource group is a logical container that organizes Azure resources and defines a shared lifecycle boundary. Deleting a resource group deletes the resources it contains. Separating test and production into different resource groups lets operators remove the test environment cleanly while production resources remain untouched in their own group.