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."
Build Resilient Aggregation and Debug Routing
This onsite combined two software-engineering exercises: 1. Implement a service method that calls multiple mock downstream APIs, merges their response...
Design a task management system with TTL
Task Management System (in-memory) Design and implement an in-memory task management system that supports tasks, users, task assignment with TTL (time...
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...
Fetch Public S3 Object Metadata
In Node.js, using AWS SDK for JavaScript v3, write a program that accesses the public S3 bucket coderbytechallengesandbox in region us-east-1 without ...
Debug and harden a driver-selection component
Debugging Exercise: “Pick Dasher” You are given a small codebase for selecting a dasher (driver) using a heap/priority-queue–like structure. The curre...
Review a PR for thread-safe request handling
PR review / debugging prompt (backend) You are reviewing a pull request that introduces a CustomerRequest class used by a web service to build and sen...
Debug and extend a streaming chat app
Scenario You are given a small codebase for a web chat UI that calls an LLM API (similar to a ChatGPT-style interface). You can run it locally. During...
Apply operations efficiently using Command pattern
You are given an initial state and a list of operations that should be applied to it. Setup - The state can be thought of as a mutable object (e.g., a...
Simulate bus boarding with priority and wheelchairs
You are implementing a simplified bus boarding simulator. Model: - Person has at least: - id (string/int) - priority (boolean): if true, they shou...
Compare arrays, linked lists, hash tables, trees
Answer the following computer-science fundamentals questions: 1) What are the time complexities (Big-O) of common sorting algorithms (e.g., bubble sor...
Debug and mitigate a CPU spike incident
Production Debugging: CPU Spike Incident (Open-Ended) You are on-call for a backend service. An alert fires: CPU usage suddenly spikes on the service’...
Explain virtual machines and concurrency basics
Topics Answer at a senior-engineer depth. Use diagrams or step-by-step reasoning as needed. 1) Virtual machines (VMs) - What is a VM and what problem ...
Model particle hits on a screen
A point source at (0, 0) emits particles toward an infinite vertical screen located at x = 1. For each particle, sample an angle theta uniformly from ...
Demonstrate effective AI-assisted coding workflow
In an interview where you are allowed to use an AI coding assistant, you are given a large scoped task (e.g., implementing a TCP chat server). The int...
Implement a rate limiter and a pub/sub API
You have two coding/design (low-level design) tasks. 1) Rate limiter Design and implement a rate limiter with an API like: - boolean allow(String clie...
Design an Extensible Python File Parser
In Python, design a pluggable file parsing framework that can process multiple file formats such as CSV, JSON, and XML. Requirements: - Expose a commo...
Design a Connect-Four-like board game
Design an object-oriented model for a turn-based, grid-based “drop token” board game similar to Connect Four. Game rules (define these precisely in yo...
Explain Out-of-Bounds Bugs and Infinite Loops
You are given a C or C++ code snippet that behaves incorrectly. The root cause is an out-of-bounds memory access, such as reading or writing past the ...
How to root-cause Wi‑Fi chip stops after 30 minutes
You are running automated tests on a Wi‑Fi chip. The chip transmits normally at the beginning, but after about 30 minutes it stops transmitting (no si...
Make tree iterators safe under concurrency
You have a binary tree and an inorder iterator implementation that maintains internal traversal state (e.g., a stack). Consider a multi-threaded progr...