Software Engineer Interview Questions
Practice 4,229 real Software Engineer interview questions for 2026 — real questions from actual interviews with detailed solutions to speed your interview preparation. This collection reflects what top tech firms like Meta, Amazon, Google, DoorDash, and TikTok typically evaluate: rigorous coding and algorithmic problem solving, increasing expectations for end-to-end system design (including GenAI/LLM design at some teams), clear complexity analysis, and reliable engineering judgment under constraints. Expect a multi-stage pipeline: recruiter screen, timed or asynchronous coding assessments, one-to-more live coding rounds focused on data structures and correctness, system-design conversations for mid and senior levels, and behavioral/hiring-manager interviews that probe ownership and collaboration. To prepare, prioritize patterned practice (timed mock interviews and implementation + optimization), learn scalable design frameworks, rehearse concise trade-off communication, and tailor examples to company signals like Amazon’s leadership lens or product/latency focus at delivery and media-driven teams. Consistent, feedback-driven practice that combines problem-solving speed, clean code, and measured design reasoning is the quickest path to offers.

"I got asked a hardcore MCM DP question and I saw it on PracHub as well. Solved that question in 5 minutes. Without PracHub I doubt I could solve it in 5 hours. Though somehow didn't get hired, perhaps I guess I solved it too fast? /s"

"Believe me i'm a student here jn US. Recently interviewed for MSFT. They asked me exact question from PracHub. I saw it the night before and ignored it cause why waste time on random sites. I legit wanna go back and redo this whole thing if I had chance. Not saying will work for everyone but there is certainly some merit to that website. And i'm gonna use it in future prep from now on like lc tagged"

"10 years of experience but never worked at a top company. PracHub's senior-level questions helped me break into FAANG at 35. Age is just a number."

"I was skeptical about the 'real questions' claim, so I put it to the test. I searched for the exact question I got grilled on at my last Meta onsite... and it was right there. Word for word."

"Got a Google recruiter call on Monday, interview on Friday. Crammed PracHub for 4 days. Passed every round. This platform is a miracle worker."

"I've used LC, Glassdoor, and random Discords. Nothing comes close to the accuracy here. The questions are actually current — that's what got me. Felt like I had a cheat sheet during the interview."

"The solution quality is insane. It covers approach, edge cases, time complexity, follow-ups. Nothing else comes close."

"Legit the only resource you need. TC went from 180k -> 350k. Just memorize the top 50 for your target company and you're golden."

"PracHub Premium for one month cost me the price of two coffees a week. It landed me a $280K+ starting offer."

"Literally just signed a $600k offer. I only had 2 weeks to prep, so I focused entirely on the company-tagged lists here. If you're targeting L5+, don't overthink it."

"Coaches and bootcamp prep courses cost around $200-300 but PracHub Premium is actually less than a Netflix subscription. And it landed me a $178K offer."

"I honestly don't know how you guys gather so many real interview questions. It's almost scary. I walked into my Amazon loop and recognized 3 out of 4 problems from your database."

"Discovered PracHub 10 days before my interview. By day 5, I stopped being nervous. By interview day, I was actually excited to show what I knew."

"I recently cleared Uber interviews (strong hire in the design round) and all the questions were present in prachub."
"The search is what sold me. I typed in a really niche DP problem I got asked last year and it actually came up, full breakdown and everything. These guys are clearly updating it constantly."

Implement Dependency-Aware Task Scheduler
Design and implement a task scheduler that supports adding tasks and consuming executable tasks in deadline order. Each task has: - taskId: a unique i...
Can You Reach the Last Index?
You are given an array nums of non-negative integers. You start at index 0. From index i, you may jump to any index j such that i < j <= i + nums[i]. ...
Design a Ride Scheduler
Design an object-oriented scheduler for a single autonomous vehicle. The vehicle starts at a known location at time 0. Ride requests arrive in input o...
Build a hit/miss word guessing game
Two players play a word guessing game. - Player A chooses a secret word. - Player B repeatedly guesses single letters. - After each guess, the game re...
Implement banking, knapsack, and pagination tasks
Problem A — Banking system command processor Implement an in-memory banking system that processes a sequence of commands in timestamp order. Entities ...
Design a multithreaded event logger
Design a multithreaded in-memory event logger for a server application. Requirements: - Many worker threads running in the process need to log events ...
Scale a rules engine for high traffic
Follow-up: scaling Assume the expense rules evaluator will be used in production and must support large-scale access. Design a high-level system that ...
Design a configurable monthly API rate limiter
Design a rate-limiting system for an expensive API. Requirements - Each user (or API key) has a monthly quota (e.g., 10,000 calls/month). - Users can ...
Implement a Vending Machine
Design and implement the core logic for a vending machine using object-oriented principles. The machine stores products, accepts bills, tracks the cur...
Minimum Cells to Bridge a Magic Grid
Minimum Cells to Bridge a Magic Grid You are given a magic grid runes with rows rows and cols columns. Each cell is one of three values: - 0 — an empt...
Implement Last-Click Attribution APIs
Design and implement an in-memory last-click attribution service. There are two event types: - click(timestamp, userId, campaignId) - conversion(times...
Design a Shared Todo App
Design an online application for sharing todo lists with other users. The interviewer asked for: - the core product requirements and user flows, - bac...
Investigate High Memory Usage
You are the on-call engineer for a delivery platform. System context - Couriers use a mobile app to accept and complete deliveries. - The mobile app c...
Solve these algorithmic problems
You are given the following independent coding tasks. For each task, design an algorithm and implement a function that returns the requested output. -...
Compute rainwater accumulation on a height grid
Mountain Rainfall Accumulation You are given an m x n 2D integer grid elevation, where elevation[r][c] is the terrain height at cell (r, c). Assume 1 ...
Process Sharded Login Logs
You are given user login event logs generated by many servers across multiple regions. The logs are sharded by server or region, so no single machine ...
Design a follower push-notification system
Design a notification system for a social product: - When a user publishes a new post, the system should send push notifications to that user’s follow...
Compute nearest bathroom distance for each desk
You are given an m x n grid of characters containing only: - 'B' = bathroom - 'D' = desk - '_' = empty cell From any cell you may move one step up/dow...
Implement crawler, dedup, and persistent LRU
Question LeetCode 1236. Web Crawler: Crawl web pages starting from a given URL within the same hostname. LeetCode 609. Find Duplicate File in System: ...
Implement Calendar, Tokenizer, and Meeting Optimizer
Implement the following three coding tasks. 1. Calendar insertion check You are given a list of existing calendar events, where each event is a hal...