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."
Describe complex projects, failures, and pivots
In a software engineering internship interview, you may be asked a set of behavioral questions about project complexity, decision-making, failure, and...
Compute total active time per Twitter Space
You are given an event log of user activity in Twitter Spaces. Each record has: - operation: one of create, join, leave - space_id: identifier of the ...
Design a job scheduler ETL pipeline system
System Design Prompt Design a Job Scheduler + ETL pipeline system. The system should allow users (or internal services) to: - Define ETL jobs (extract...
Design API that aggregates three downstream APIs
You are given three existing HTTP JSON APIs owned by other backend services: - Service A: GET /service-a?user_id={id} → returns basic user profile dat...
Design an async API with idempotency
System Design: Asynchronous API Call With Idempotency Design an HTTP API that triggers a long-running operation (seconds to minutes) against downstrea...
Design a constrained cache and secure string validator
Part A — Constrained cache (LRU-like) Design an in-memory cache that supports the following operations: - get(key) -> value | null - put(key, value) -...
Return all files under a path
You are building a simple file crawler. Task Implement an API/function: - Input: a filesystem path rootPath - Output: a list/array of all file paths c...
Design product catalog service
Design product catalog service Design a product catalog service for a large e-commerce / grocery platform. The catalog must support a hierarchical cat...
Design an Elevator System and Scheduler
Design an object-oriented elevator system. Define core classes and interfaces (elevator, controller, request, floor, buttons, sensors) and their inter...
Find largest group of two-digit numbers sharing digits
You are given an integer array A of length n (1 <= n <= 100). Each element is a two-digit number (e.g., from 10 to 99). Two numbers are considered con...
Implement CRUD API and tests
You are given two software-engineering tasks. 1. Implement a simple REST API for a resource such as Note or Message. - Support basic CRUD operation...
Add Two Forward-Order Lists
Implement a function that adds two non-negative integers represented by singly linked lists. - Each node stores a single digit. - The digits are store...
When should products use AI?
A product-oriented interview asks you to discuss AI adoption in software products. Explain how you would decide whether a feature should use AI or a t...
Design a Code Review Agent
Design an AI-powered code review agent that assists developers by reviewing pull requests and producing actionable feedback. The agent should be able ...
Explain your career path and leadership impact
Context: This is a hiring-manager behavioral screen for an Engineering Manager / Tech Lead–type role. Answer the following prompts clearly and concret...
Design an API for pay computation with retries
You’ve implemented logic that computes a dasher’s pay from order event logs (events include timestamps and state transitions). Design an HTTP API to e...
Design a Content Moderation Platform
Design a large-scale content moderation system for a social platform that accepts user-generated text, images, and videos. The system should detect po...
Design an API for Pascal Triangle
Design an HTTP API that returns Pascal's triangle for a requested height. The server should return only numeric data, while the client is responsible ...
Design a scalable banking system
System Design: Online Banking Platform Context Design an online banking platform (scope similar to a credit-card application system) that supports: - ...
Design autocomplete with Trie
Design and implement an autocomplete service backed by a prefix tree (Trie). The service stores a dynamic dictionary of words, each carrying an intege...