Q451. How would you run an A/B test on a landing page?
I start with a hypothesis tied to a metric: for example, moving social proof above the form will lift sign up conversion by ten percent because trust is the main blocker....
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).
I start with a hypothesis tied to a metric: for example, moving social proof above the form will lift sign up conversion by ten percent because trust is the main blocker....
My starting point is that a discount is a trade, never a gift. When a buyer asks for a lower price I first understand the reason. Is it budget reality, a competing quote,...
A flaky test passes and fails on the same code. Flakiness is corrosive because teams start ignoring failures, which hides real regressions. Common causes: - Timing and as...
A lexer converts a character stream into tokens. A hand-written tokenizer scans one character at a time and skips whitespace. ```python def tokenize(src): tokens, i = [],...
A database deadlock is a cycle where two or more transactions each hold a lock the other needs, so neither can proceed. ```text T1: UPDATE a; UPDATE b; T2: UPDATE b; UPDA...
Switching and routing both forward packets, but at different layers and scopes. A switch works at layer 2 using MAC addresses within a single broadcast domain, the LAN. I...
Both are synchronisation primitives, but they express different ideas. A mutex provides mutual exclusion: it has an owner, it is locked or unlocked, and only the owner ma...
The Single Responsibility Principle states that a class should have one reason to change, meaning it should serve one actor or concern. It is about change, not size: a sm...
Averages hide the shape of a distribution. Percentiles describe typical and extreme behaviour, which matters for user experience and capacity planning. For example, avera...
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...
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.