Skip to main content
šŸ”„ Daily YouTube Shorts & Deep Dives

100 Days of Interview Questions

High-yield Computer Science, Operating Systems, System Design, and Concurrency questions explained intuitively with visual notes and code.

#01Why Isn't a 2-Way Handshake Enough in TCP?
Computer Networks→
#02Why Do Database Indexes Slow Down INSERTs?
Databases→
#03Why Do Databases Use B+ Trees Instead of Binary Search Trees?
Databases→
#04Why Is a Process Switch Slower Than a Thread Switch?
Operating Systems→
#05Why Does Virtual Memory Make Computers Faster?
Operating Systems→
#06Why Do Page Faults Happen?
Operating Systems→
#07Why Do Zombie Processes Exist?
Operating Systems→
#08Why is TCP Reliable but UDP Isn't?
Computer Networks→
#09Why Can't One Process Access Another's Memory?
Operating Systems→
#10Why Does TCP Use a Sliding Window?
Computer Networks→
#11Why Do Databases Use Write-Ahead Logging (WAL)?
Databases→
#12Why is HTTPS More Secure Than HTTP?
Computer Networks→
#13Why Do Deadlocks Happen?
Operating Systems→
#14Why is UDP Used for Video Calls Instead of TCP?
Computer Networks→
#15Why Does Linux Use Copy-on-Write (COW)?
Operating Systems→
#16Why Do Systems Use Rate Limiters?
System Design→
#17Why Prefer Composition Over Inheritance?
OOP & Design→
#18How Databases Handle Connection Spikes
Databases→
#19Why Distributed Systems Use Consistent Hashing
System Design→
#20How Message Queues Handle Traffic Spikes
System Design→
#21Why DNS is Super Fast the Second Time
Computer Networks→
#22Why LIKE '%term' Destroys Database Performance
Databases→
#23Why Production Systems Separate Reads & Writes
System Design→
#24Mutex vs. Spinlock: Why Sleeping Kills Performance
Operating Systems→
#25Why ChatGPT Uses SSE Instead of WebSockets
System Design→
#26Why Priority Queues Use Heaps Instead of Arrays
Data Structures & Algorithms→
#27Why Docker Boots in Milliseconds While VMs Take Minutes
Operating Systems→
#28Why QuickSort beats MergeSort (O(N²) vs O(N log N))!
Data Structures & Algorithms→
#29Why NoSQL Sacrifices ACID for High Availability
System Design→
#30Forward Proxy vs Reverse Proxy: The Only Rule You Need
System Design→
#31Why APIs Use Idempotency Keys (Prevent Double Payments)
System Design→
#32Why Epoll is 100x Faster Than Select (I/O Multiplexing)
Operating Systems→
#33Why Dynamic Arrays Double Their Size (ArrayList / std::vector)
Data Structures & Algorithms→
#34Why Stack Memory is 10x FASTER Than Heap
Operating Systems→
#35Why TRUNCATE is 100x Faster Than DELETE
Databases→
#36Why Static Functions Cannot Access this in C++
OOP & Languages→
#37Why Array Traversal is 10x FASTER Than Linked Lists
Data Structures & Algorithms→
#38Why Low-Priority Threads FREEZE High-Priority Tasks
Operating Systems→
#39Why NULL = NULL is FALSE in SQL
Databases→
#40Why Strings are IMMUTABLE (Python, JS, Java)
OOP & Languages→
#41Why malloc(1GB) DOES NOT Consume 1GB RAM
Operating Systems→
#42Why Expired Cache Keys CRASH Databases
System Design→
#43Non-Repeatable Read vs Phantom Read
Databases→
#44How Bloom Filters Actually Work
System Design→
#45Why Base Destructors MUST Be Virtual in C++
OOP & Languages→
#46Why Running Out of RAM Freezes Your CPU (Thrashing)
Operating Systems→
#47Why Sorted Arrays Run 6x FASTER (Branch Prediction)
Data Structures & Algorithms→
#48College vs Production: Database Normalization (3NF vs Denormalization)
Databases→
#49College vs Production: Database Locking & MVCC
Databases→
#50College vs Production: Why Recursion CRASHES in Production
Data Structures & Algorithms→
#51College vs Production: Why SHA-256 Fails for Passwords
System Design→
#52Search Autocomplete: Debounce vs Throttle
System Design→
#53How to Scale WebSockets Across Multiple Servers
System Design→
#54Why Random UUIDs SLOW DOWN Your Database
Databases→
#55Why HashMap Capacity is ALWAYS a Power of 2
Data Structures & Algorithms→
#56Why 32-Bit Systems CANNOT Use 8GB RAM
Operating Systems→
#57Why 0.1 + 0.2 ≠ 0.3 in Programming
OOP & Languages→
#58Why 2GB Free RAM CAN'T Allocate 200MB (External Fragmentation)
Operating Systems→
#59Why 1 + 4 + 1 = 12 Bytes in C/C++ (Struct Padding)
OOP & Languages→
#60How SYN Cookies STOP Server Crashes
Computer Networks→
#61Why User Apps CANNOT Touch Hardware (CPU Protection Rings)
Operating Systems→
#62Why Sending 1 Reads as 16,777,216 Over Sockets (Endianness)
Computer Networks→
#63Why CPUs Reorder Code Behind Your Back (Memory Barriers)
Operating Systems→
#64Why HashMaps Switch to Trees at 8 Collisions
Data Structures & Algorithms→
šŸ’¬

Discussion & Doubts