Hello @Naveen Neerukattu
Thank you for reaching out to the Microsoft Q&A platform.
Yes, you can check the load balancer that a virtual machine is part of from the virtual machine's network interface. In the Azure portal, navigate to the virtual machine, select the network interface from networking blade and then view the load balancer that the network interface is associated with from the properties blade of network interface.
You also can use Azure CLI, or Azure PowerShell
In Azure CLI, you can use the following command to view the network interface of a virtual machine:
az network nic show --resource-group <resource-group-name> --name <nic-name>*
In Azure PowerShell, you can use the following command to view the network interface of a virtual machine:
Get-AzNetworkInterface -ResourceGroupName <resource-group-name> -Name <nic-name>*
Please accept as answer and do a Thumbs-up to upvote this response if you are satisfied with the community help.***