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."
Explain your main growth area
What is one of your main growth or development areas right now? Explain: - What specific skill or behavior you are working to improve. - How you ident...
Review an inference API design for scale
System Design Review: A Machine-Learning Inference API at Scale Background You are reviewing a teammate's design document for a production machine-lea...
Design a job scheduler
Design a Scalable Distributed Job Scheduler Context Design a multi-tenant, horizontally scalable job scheduler for backend services. The system must p...
Design log-query stream processor
Design log-query stream processor Stream Processor: Query Registration and Log Tagging Context You are designing a streaming component that ingests a ...
Design AI chat bot system
Question Design an AI chatbot system with a front-end focus, under the following hard constraints: 1. User messages and conversation history are store...
How do you discuss mistakes and trade-offs?
Be prepared for both of the following prompts: 1. Tell me about a major mistake you made as a software engineer. Explain the situation, the impact,...
Design RSS Feed and Temporary Mail
This interview included two system design prompts. 1. Design an RSS feed platform Design a service that periodically ingests RSS or similar publish...
Detect currency arbitrage with costs
You are given a K×K matrix R of currency exchange rates where R[i][j] is the amount of currency j obtainable for one unit of currency i, and R[i][i] =...
Maximize Value Under a Budget
You are given an array of items. Each item has a price and a value, and you are given a total budget. Each item can be purchased at most once. Impleme...
Find Shortest Queue with Few Calls
You are given a list of queues of integers. For each queue, the only available operations are isEmpty() and poll(), where poll() removes and returns t...
Apply Range Overwrite Queries
You are given an integer array nums of length n and a list of range-assignment queries. Each query is a tuple (left, right, value), where left and rig...
Reverse Words While Preserving Spaces
Implement a C++ function that reverses the order of words in a string. Assume a word is any maximal sequence of non-space characters, and the input co...
Select words to maximize unique characters
Problem You are given an array of strings words. You may choose any subset of these strings and concatenate the chosen strings in any order. Your goal...
Answer senior behavioral questions
For a senior software engineering interview, prepare strong answers to the following leadership and impact questions: 1. Tell me about a time you infl...
Minimize calls to find all bad test pairs
You have \(n\) atomic tests \(t_1, t_2, \dots, t_n\). You are given access to a black-box function: `python bool runTest(set<Test> S) ` which behaves ...
Can All Courses Be Completed?
Can All Courses Be Completed? You are enrolling in a program with numCourses courses, labeled 0 to numCourses - 1. Some courses have prerequisites: yo...
When to use a dictionary vs an array?
Question You’re implementing a feature and must choose between using an array/list or a dictionary/hash map to store and access data. Explain when you...
Explain your fit and motivation
Prepare strong answers for these behavioral prompts: 1. Why do you want to work at Arm? 2. Why are you a strong fit for this role? 3. Describe a proje...
Choose models for trading tasks
You are given several modeling options for quantitative trading or pricing work: linear regression, convolutional neural networks, transformers, and r...
Design a Versioned Key-Value Store
Implement a data structure for storing values by key over time. The structure should support these operations: - put(key, value, timestamp): Store the...