Q151. What is linear regression and what are its assumptions?
Linear regression models a continuous target as a linear combination of predictors plus error: y = b0 + b1*x1 + ... + e. Coefficients are estimated by ordinary least squa...
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 (329 available).
Linear regression models a continuous target as a linear combination of predictors plus error: y = b0 + b1*x1 + ... + e. Coefficients are estimated by ordinary least squa...
Gradient descent minimizes a loss function by repeatedly moving parameters in the direction that decreases the loss. The gradient is the vector of partial derivatives, an...
cron runs commands on a schedule defined by five time fields: minute, hour, day of month, month and day of week. ```bash # m h dom mon dow command 30 2 * * * /usr/local/b...
Design around an RTO and RPO first; they determine active-active versus active-passive. - DNS and traffic: Route 53 health checks with failover or latency routing, plus G...
Eviction decides what to remove when the cache is full or memory is constrained: - LRU (least recently used): evicts the item not accessed for the longest time. A solid d...
Authorization belongs in the server layer, never in the client query. Because clients can request any combination of fields, enforce rules at the field and object level, ...
Tailwind's performance story is about generation and delivery. The JIT engine produces only the utilities present in scanned files, so production CSS is typically a few k...
Command substitution captures the stdout of a command as a string. Use `$(cmd)` rather than backticks, which are deprecated and harder to nest. ```bash today=$(date +%F) ...
All five run a block with an object in context. They differ in how the object is referenced (`it` or `this`) and what they return (the object or the lambda result). - `le...
`defer` schedules a function call to run when the surrounding function returns. Deferred calls run in LIFO order and are typically used for cleanup such as closing files ...
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.