159 curated questions graded from Foundations (Easy) to Practical Patterns (Medium) and Internals & Architecture (Hard).
159
150
9
5 / Level
Foundations & Core Concepts
http module.app.listen() on a port.const express = require('express');
const app = express();
app.listen(3000, () => console.log('Listening on 3000'));
req) and response (res) objects, end the request-response cycle, or call the next middleware in the stack.req (the request object), res (the response object), and next (a callback function to pass execution to the subsequent middleware).function myMiddleware(req, res, next) {
// Action code
next(); // Transfer control
}
Get instant access to all 57 questions, in-depth model answers, code sandboxes, and all 27+ technologies for a single one-time payment.
Core concepts, definitions, basic syntax, and first principles expected in round 1 screening.
Real-world mechanisms, state management, edge cases, performance trade-offs, and practical coding.
Deep runtime internals, memory models, distributed design, concurrency failure modes, and architectural decisions.