Q11. 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 (1,236 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...
Blue/green is a deployment strategy with two identical environments. Blue runs the current version, and green runs the new version. Process: 1. Deploy the new release to ...
Terraform state is a JSON file that maps your configuration to real infrastructure. It stores resource IDs, attribute values, and dependency metadata so Terraform knows w...
A Pod is the smallest deployable unit in Kubernetes. It represents one or more containers that run together on the same node and share a network namespace, IP address, an...
An image is a read-only template; a container is a running instance of that image. - Image: built from a Dockerfile, composed of immutable layers, and stored in a registr...
An organization is the root node of the Google Cloud resource hierarchy. A project is the fundamental resource container where you enable APIs, create resources, and atta...
A subscription is a billing and access boundary; a resource group is a logical container for related resources. - Subscription: defines quotas, billing, and a trust bound...
Caching stores a copy of data in a faster or closer tier so future reads avoid the slower origin. It reduces latency, increases throughput, lowers load and cost on databa...
Authentication (authn) establishes who the caller is: verifying a password, a session cookie, a token or a certificate. Authorization (authz) decides what that identified...
- Queue: point-to-point. Each message is delivered to exactly one consumer from a pool, which is ideal for task distribution and load balancing. - Publish/subscribe: a me...
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.