Software Engineer Software Engineering Fundamentals Interview Questions
Practice 284 real Software Engineering Fundamentals interview questions for Software Engineer roles. From companies including Amazon, Bitkernel, Apple, Google, Uber.

"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 Checkers Game Simulator
Design and partially implement an object-oriented simulator for a two-player checkers-like board game. Requirements: - The game is played on an 8 x 8 ...
Design a transaction class for deposits/withdrawals
Design a Transaction/Account component that supports deposits and withdrawals. Assume you are building a backend library or service used by other part...
Build a sortable, searchable movie list UI
Frontend coding: Movie list with sort and search Build a small UI that displays a list of movies loaded from a JSON endpoint. Data source - Load movie...
Explain how to understand a large codebase fast
You are given an unfamiliar, large codebase with many classes and modules. You may use an IDE (jump-to-definition, find usages, call hierarchy) and AI...
Optimize a core kernel for throughput
You are given a mocked “core kernel” function (similar in spirit to a GPU kernel / tight compute loop) that is functionally correct but slow. Task - O...
Explain Redis/MySQL internals and containers vs VMs
Answer the following backend fundamentals questions clearly and succinctly: 1. Redis internals - What is Redis’s high-level architecture? - What...
Solve Graduate Trader Probability Questions
A graduate trader online assessment reportedly included the following quantitative reasoning, probability, and logic questions. Solve each problem. 1....
Implement a React flag loader with typewriter effect
Scenario You are given a small React + TypeScript project with a Mocha test runner (and an autograder). The task is a practical front-end mini-project...
Design a social network with snapshots
You are asked to design and implement an in-memory SocialNetwork class that supports users following each other and creating snapshots of the follow g...
Handle payment-service outages
You own a service that computes courier payouts and then submits payout requests to a downstream payment processor. What should your system do if the ...
How would you improve AI-generated code?
During a pair-programming interview, you wrote the rover simulator code using an AI coding assistant. The code works for the basic examples, but the i...
Implement a Connection Pool
You are given an existing DBConnection class that simulates a physical database connection. It exposes the following methods and must not be modified:...
Design a concurrent latency percentile tracker
Design a thread-safe LatencyTracker class that supports: 1. Recording samples - Input: timestamp (e.g., epoch millis) and latencyMs (integer millis...
Explain SystemVerilog verification concepts and write constraints
Answer the following SystemVerilog / DV questions. Use short explanations and, where appropriate, show small SV code snippets. 1) Concurrency: Explain...
Fix race condition in concurrent deposit
Concurrent bank account debugging (thread safety) You are given a simple BankAccount object that is used concurrently from multiple threads. Two depos...
Design a Trade Ledger Class
Design a class that records daily stock trading activity and returns all recorded trades in sorted order. Requirements: - Implement a method to regist...
Implement a Shape interface using OOP
Problem You are given the following interface (language-agnostic): `text interface Shape { double area(); double perimeter(); } ` Design and imple...
Design a task system with assignments
You are implementing an in-memory task management system (no database required — everything lives in process memory and is rebuilt on restart). The sy...
Choose lock granularity for concurrent storage
You are implementing a component inside a storage engine that is accessed concurrently (e.g., an in-memory index, metadata cache, or block map). Discu...
Design a top-build target tracker
Design an object-oriented component that tracks software build activity. Each build event contains: - target_name: the name of the build target - time...