Final answer:
The correct cmdlet and command for resizing a VM in Azure are Resize-AzureRmVM for PowerShell and az vm resize for Azure CLI.
Step-by-step explanation:
The correct PowerShell cmdlet and Azure CLI command used to resize a virtual machine (VM) in Azure are Resize-AzureRmVM and az vm resize, respectively. To perform this operation using PowerShell, you would typically use the Resize-AzureRmVM cmdlet along with the parameters to specify the VM name, the resource group it belongs to, and the new size of the VM. For Azure CLI, the command az vm resize along with the appropriate parameters like --resource-group, --name, and --size will allow you to change the VM size.
These commands are pivotal for dynamic resource management, enabling users to adapt their VM configurations to changing workload demands, enhancing scalability, and optimizing resource utilization within the Azure cloud environment.