Q211. What is a confidence interval and how do you interpret it?
A confidence interval gives a range of plausible values for a population parameter, along with the uncertainty in the estimate. A 95 percent interval means that if we rep...
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 (2,728 available).
A confidence interval gives a range of plausible values for a population parameter, along with the uncertainty in the estimate. A 95 percent interval means that if we rep...
Overfitting is when a model learns noise and idiosyncrasies of the training set instead of the underlying pattern. It performs well on training data but poorly on new dat...
Partitioning splits a large dataset into smaller physical chunks so queries and maintenance target only relevant data. Common strategies are range (by date), list (by reg...
In cache-aside the application checks the cache first. On a miss it reads from the database, writes the value into the cache with a TTL, and returns it. On writes, the co...
Pipelines pass documents through stages, transforming them step by step. ```js db.orders.aggregate([ { $match: { status: "paid" } }, { $unwind: "$items" }, { $group: { _i...
Both point to files, but at different levels. - Hard link: another directory entry for the same inode. The file data is shared, and the link count increases. Deleting one...
A build artefact is the immutable output of a build: a container image, JAR, binary, or package. Versioning means each artefact has a unique, traceable identifier. Why: -...
plan is a dry run; apply makes changes. - terraform plan refreshes state, compares configuration to reality, and shows what will be created, updated, or destroyed. It doe...
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...
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.