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."
Design a large-scale distributed rate limiter
Problem Design a multi-tenant, large-scale distributed Rate Limiter service used by many internal teams. The service should allow product teams to enf...
Implement Stable Softmax
Implement a function that computes the normalized exponential values of a list of real numbers. Given an array x of length n, return an array p of len...
Design a secure trading app on AWS
Scenario Design a secure, Robinhood-like mobile/web application on AWS, with a deep dive into: 1. User profile management (account creation, authentic...
Validate whether a binary string is good
You are given a binary string s consisting only of characters '0' and '1'. Define a good string recursively by the grammar: - '0' is a good string. - ...
Answer general behavioral questions
Behavioral Interview Prompts (Software Engineer — Technical Screen) To prepare concise, high-impact answers, use STAR/CAR (Situation–Task–Action–Resul...
Find Feature Activation Order
You are building a feature-flag system for a product. There are n features labeled 0 to n - 1. Each dependency pair [a, b] means feature a depends on ...
Implement account scheduler with locking and LRU
Design a class AccountScheduler that manages the time-based availability of a fixed set of account IDs. Initialization You are given: - accounts: a li...
Find a secret word via match feedback
Word Guessing Game (Mastermind-style) You are given a list of unique candidate words wordlist. All words have the same length L and contain only lower...
How to Identify Best Battery Group
You have historical quality data for batteries that were randomly assigned to one of 5 groups. Each battery then goes through 3 different quality test...
Explain thermal and signal fundamentals
Answer the following hardware fundamentals questions for a wearable sensor product: 1. Model a heat-transfer path as an equivalent thermal-resistance ...
Solve Two Array Optimization Problems
You are given two coding problems from the same interview round. Problem 1: Split a gold chain fairly An array weights represents the weights of conse...
Design real-time delivery tracking system
Question Design a real-time delivery / courier-tracking platform that gives dispatchers, operations, and customers live visibility into each courier's...
Explain Runnable vs Callable and thread-safe Singleton
Concurrency & Design Patterns (Java) 1. In Java concurrency, what is the difference between Runnable and Callable? - When would you choose one over...
Answer cross-team delivery and values questions
You are in a behavioral/values interview. Prepare structured answers (use STAR or similar) for prompts like: 1) Cross-team delivery issue - Describe a...
Answer multi-round grid and data-structure questions
You are given several independent interview-style coding questions. 1) Find first/last occurrence in sorted array (+ dynamic updates follow-ups) Given...
Implement Interval Overrides and Top-K Strings
Solve both coding problems below. Problem A: Apply Override Intervals You are given a set of time intervals representing normal usage periods. Each us...
Discuss projects, mentorship, and conflict resolution
Answer the following behavioral questions with concrete examples: 1) Project deep dive: Describe a project you worked on that had meaningful impact. W...
Debug and harden a driver-selection component
Debugging Exercise: “Pick Dasher” You are given a small codebase for selecting a dasher (driver) using a heap/priority-queue–like structure. The curre...
Implement a crash-resilient LRU cache
Implement an LRU-based memoization helper with behavior similar to a standard Python LRU cache. You are given an interface like this: `python class LR...
Solve a Key-Door Corridor Maze
AI-assisted coding round. You may use an AI coding assistant, but you are responsible for debugging the implementation and validating the test cases. ...