Software Engineer Interview Questions
Practice 4,429 real software engineer interview questions for 2026. Covers top employers like Google, Amazon, OpenAI, and Uber — real questions from actual onsites with detailed solutions — and is built for focused interview preparation. This collection emphasizes coding and algorithms first, then system design, performance, and role-specific domains so you can train the exact skills interviewers test. What’s distinctive: coding rounds still dominate at every company, Google often emphasizes algorithms and distributed-systems thinking, Amazon commonly probes scalable-services design and operational tradeoffs, OpenAI leans toward ML systems, model deployment and inference-scaling problems, and Uber typically asks real-time routing, geospatial and consistency challenges. Expect live coding, pair-programming, and whiteboard/system-design sketches. To prepare efficiently, drill medium-to-hard algorithm problems with time limits, practice end-to-end system design sketches focused on capacity and reliability, and rehearse concise behavioral stories that show ownership and impact.

"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."
Solve Quickselect, Tree Distance, and Prefix Substrings
You are given three independent coding tasks. 1. Implement Quickselect - Given an unsorted integer array nums and an integer k, return the k-th sma...
Explain the least squares method
Explain the least squares method Explain the least squares method: - What optimization problem does ordinary least squares (OLS) solve? - Derive the c...
Build a time-based key-value store
Problem Design a data structure that stores multiple values for the same key at different timestamps, and can retrieve the most recent value as of a g...
How do you handle credit, leadership, and feedback?
Behavioral interview prompts Answer the following prompts with concrete examples from your experience (use a structured method such as STAR: Situation...
Answer common behavioral questions for new grad
You are in a 35-minute behavioral round for a new-grad software role. Prepare concise, structured answers (1–3 minutes each) to the following question...
Implement a sliding-window rate limiter
Implement an in-memory sliding-window rate limiter. You are given a stream of requests, each with a timestamp in milliseconds. Part 1: Per-user limit ...
Design a web search engine pipeline
Design the high-level pipeline of a web search engine. Assume you need to support internet-scale search (billions of web pages) with low-latency queri...
Maximum Length of a Word Selection With All Unique Characters
You are given an array of lowercase strings words. Select a subset of these words (zero or more, chosen in any order) and concatenate them. The select...
Minimum Round-Trip Flight Cost
You are planning a round trip and want to spend as little as possible on flights. You are given two integer arrays of equal length n: - departure[i] —...
Merge Two Lists of Non-Overlapping Intervals
You are given two lists of closed integer intervals, a and b. Each interval is represented as a pair [start, end] with start <= end, and it covers eve...
Evaluate arithmetic expression with variables
Implement an expression evaluator for a string expr containing non-negative integers, variables (alphabetic names), operators +, -, , /, parentheses '...
Describe improving workflow and challenges
Behavioral: Improving a Team's Development Workflow You are a software engineer in a technical screen. Answer using a concise, structured story (e.g.,...
Validate and restore IPv4 addresses
Design and implement the following IPv4 tasks. a) Validate dotted IPv4: Write a function isValidIPv4 (s) that returns true if s is a valid dotted-deci...
Diagnose overloaded Kubernetes cluster
Kubernetes Overload: End-to-End Debug + Mitigation Plan You are given a Kubernetes-based microservices system that is currently overloaded, exhibiting...
Find kth smallest and count stair-climbing ways
You are given two separate algorithm questions. A) Find the k-th smallest element in an array (no sorting) Given an integer array nums of length n and...
Design a video streaming platform like Netflix/YouTube
System Design Design a large-scale video streaming platform similar to Netflix/YouTube. Core user stories 1. Upload (creator) / ingest (studio) videos...
Determine whether a word exists in a letter grid
Given an m x n grid of characters board and a string word, determine whether word can be constructed from sequentially adjacent cells. Rules: - Adjace...
Compute balances with transaction fees and rejections
You are building a simple ledger. Inputs - A list of account names. - An initial balance for each account. - A list of transfer transactions, each wit...
Compute reachable cells for a cleaning robot
You are given a 2D grid representing a floor plan: - 0 = free cell (the robot may stand on it) - 1 = blocked cell (obstacle) The robot can move from a...
Maximize minimum value after k decrements
You are given an integer array vulnerabilities of length n, where vulnerabilities[i] is the initial security score of server i. You must perform exact...