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."
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...
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 Recipe Manager
Design an in-memory recipe manager with four levels of functionality. No UI is required; focus on clean APIs, data structures, and edge-case handling....
Implement a Single-Node Priority Pub/Sub
Implement a simplified in-memory publish-subscribe system that runs on a single machine. The system should support users subscribing to topics with a ...
Design a banking ledger for deposits/withdrawals
Banking/OO Design: Account Ledger Design a minimal in-memory or persistent component for a bank account system that supports: - deposit(account_id, am...
Define a one-way function and its uses
What is a one-way function (also called a one-direction function) in cryptography? Define it precisely and explain common uses in real systems (e.g., ...
Explain thermal and signal fundamentals
Answer the following hardware fundamentals questions for a wearable sensor product: 1. Model a heat-transfer path as an equivalent thermal-resistance ...
Design Travel Page Data APIs
A travel advisory company is launching a customer-facing product experience for browsing and requesting travel services. You are given mockups for thr...
Design an Event Recommendation Engine
You are building an email marketing recommendation engine for a ticketing marketplace. The marketplace has many users and many events. The engine shou...
Design a Parking Garage Object Model
Design an object-oriented model for a multi-level parking garage. The garage should support: - Multiple floors and parking spots. - Different vehicle ...
Compare processes and threads in Linux and Python
Explain the differences between a process and a thread in Linux. Then explain how Python differs (e.g., the GIL), and when you would use Python thread...
Explain Runnable vs Callable and thread-safe Singleton
Concurrency & Design Patterns (Java) 1. In Java concurrency, what is the difference between Runnable and Callable? - When would you choose one over...
Design article voting and flip-tracking system
Design an object-oriented "Article System" that supports voting and query operations. You need to design the data model and core APIs (including metho...
Design an ads retrieval service using a heap
Object-Oriented Design: Ads Retrieval (Priority-Based) Design a component that manages ads and supports retrieving the “best” ads based on a score. Re...
Design a waitlist manager
Object-Oriented Design: Waitlist Manager Design a waitlist management component (e.g., for a restaurant or event) that maintains FIFO order for partie...
Explain Python and React performance fundamentals
In a phone screen for a full-stack software engineering role, you may be asked a group of fundamentals questions such as: - Explain what a Python cont...
Design an in-memory TODO list API
Object-Oriented Design: TODO List Design an in-memory TODO list component that supports the following operations: - add(todo) → returns an id - delete...
Extend and optimize an existing CLI tool
You are given: - A short requirements doc for a command-line (CLI) tool that performs a set of concrete tasks (subcommands, flags, inputs/outputs). - ...
Add TTL to an LRU cache
Design an in-memory LRU cache and explain how to extend it with TTL support. Requirements: - get(key) returns the value if the key exists and has not ...
Choose DynamoDB vs MySQL for a backend
In a backend system, you must choose a primary database for a core service. Explain when you would choose a key-value/NoSQL store (e.g., DynamoDB-like...