Q1. How do you find which process is using a port on Linux?
Use ss, lsof, or fuser depending on what is installed. ```bash sudo ss -ltnp | grep ':8080' sudo lsof -i :8080 sudo fuser -n tcp 8080 ``` - ss -ltnp lists listening TCP s...
Technical Question Bank · Peer-Reviewed
Search and filter frequently asked interview questions across technical, programming, and behavioral domains. Tailor your interview preparation by difficulty for freshers or experienced developers (8 available).
Use ss, lsof, or fuser depending on what is installed. ```bash sudo ss -ltnp | grep ':8080' sudo lsof -i :8080 sudo fuser -n tcp 8080 ``` - ss -ltnp lists listening TCP s...
Both control traffic in a VPC, but at different layers. - Security groups are stateful and attached to ENIs or instances. Return traffic is automatically allowed. Rules a...
Kubernetes gives stable access to moving Pods through Services and DNS. - A Service selects Pods by label and gets a stable virtual IP, the ClusterIP, and a DNS name. - k...
A Service exposes a set of Pods at the transport layer; an Ingress exposes HTTP and HTTPS routes into the cluster at the application layer. - Service: stable virtual IP a...
Docker creates network namespaces and connects containers using drivers. - bridge (default): containers get private IPs on a virtual bridge. Same-network containers resol...
Both are Elastic Load Balancers, but they operate at different OSI layers. - Application Load Balancer (layer 7) understands HTTP and HTTPS, supports host and path-based ...
A GCP VPC is a global, software-defined network. Subnets are regional, and instances in different regions can communicate over the internal network. - VPC networks come i...
A Virtual Network, or VNet, is an isolated private network in a region with its own address space. You divide it into subnets and control traffic with network security gr...
HireXTech uses essential storage to remember your study preferences and third-party advertising cookies via Google AdSense in compliance with GDPR. You can choose to enable essential cookies only or accept all cookies. Read our Privacy Policy.