Software Engineer Interview Questions
Practice 4,397 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 Kafka architecture and reliability semantics
Explain Kafka architecture and reliability semantics Kafka Architecture and End-to-End Semantics You are asked to explain Kafka's core architecture an...
Solve bank, password, expression algorithm tasks
Solve bank, password, expression algorithm tasks Implement a banking system that supports four specified operations within 90 minutes. Implement a pas...
Design web crawler for 1000 devices
Design web crawler for 1000 devices Distributed Web Crawler: Design for 1,000 Devices Context Design a production-ready web crawler that starts from a...
Implement flat_map, redistribute wealth evenly
Implement flat_map, redistribute wealth evenly Implement std::flat_map in C++, including its iterator; explain design choices and add thorough test ca...
Compute total after discounting most expensive item
Problem You are given: - An array prices of length n, where prices[i] is the price of the i-th item. - An integer discountPercent (0 to 100). A promot...
Count players reaching end with moving watchers
You are given a 1D line of L cells indexed 0..L-1. The end cell is L-1. There are: - W watchers with initial integer positions watchers[]. - P players...
Implement list cloning and k-frequency finder
You are given two separate coding tasks. --- Problem 1: Deep copy a linked list with extra pointers You are given the head of a singly linked list. Ea...
Answer k-step ancestor queries in a rooted tree
You are given a rooted tree encoded as a parent array par[1..n] where: - Nodes are labeled 1..n. - par[i] is the parent of node i. - Exactly one node ...
Design object model for an elevator system
Design the object-oriented model for an elevator (lift) system in a multi-floor building that may have multiple elevators. The system should support: ...
Design a basic credit card system
Design an object-oriented credit card system for a retail bank. Focus on clean class design rather than distributed infrastructure. At a minimum, the ...
Design a scalable image-based social network
Design the backend system for a social networking website primarily focused on sharing images (similar in spirit to an image-centric social app). User...
Explain CSS specificity and selector precedence
Question Explain CSS specificity and how the browser decides which style rule wins when multiple selectors match the same element. Include: - How spec...
Implement a Contiguous Memory Manager
You are asked to implement a contiguous memory manager for an array of n memory cells indexed from 0 to n - 1, where all cells are initially free. Sup...
Design an Animal Chess OOP simulation
Design and implement a simplified Animal Chess (Dou Shou Qi) game using object-oriented principles. Include: 1) Piece classes Elephant, Lion, Tiger, L...
Compute delivery metrics and top-K queries
Compute delivery metrics and top-K queries You have restaurant menus and orders for a food delivery platform. Part 1: Given a user location and a set ...
Implement a persistent sharded key-value store
Problem Implement a simple key–value store that persists data on disk. You must store the data in fixed-size shards, where each shard is saved in one ...
Design lexicographic range query word store
Design a storage/data structure for a set of strings that supports lexicographic range queries. You are given a collection of words (strings), stored ...
Design coding platform with global leaderboard
Scenario Design a LeetCode-like online coding practice platform that also has a global leaderboard (e.g., Top K users by score) and can show a user’s ...
Design account system with cashback
Design account system with cashback System Design: Account Management with Transfers, Payments, and Cashback You are to design and implement an in-mem...
Flatten object & Promise.all
Question Given a nested JavaScript object, write a function to flatten it so that nested keys are converted to a single-level path (e.g., {a:{b:1}} ->...