Good job Suresh on figuring what this question was about. Hello on SO Deepak kumar Gunjetti in the future please try to ask concrete questions as you ask about binary and the answer is "kube-proxy is a daemonset".
So just as an extension of the answer:
With kubectl get all -n kube-system
you can find that kube-proxy is indeed a daemonset. Daemonset is a type of object in Kubernetes that will make sure that on any node there will be one running pod of its kind.
You can also view the yaml file of kube-proxy.
Either by using kubectl get daemonset.apps/kube-proxy -n kube-system -o yaml
or here.
If you are going to look for more Kubernetes components you can find them inside of the minikube VM. You can reach them by minikube ssh
and then navigating to Kubernetes dir cd /etc/kubernetes
and in the folder manifests you will find the most important ones:
ls /etc/kubernetes/manifests/
addon-manager.yaml etcd.yaml kube-apiserver.yaml kube-controller-manager.yaml kube-scheduler.yaml