NoteQuest

Computer Science

Strengthen CS fundamentals: DSA, system design, networks, and operating systems.

Topics

Latest in Computer Science

All articles

Process vs Thread Explained

Understand the difference between processes and threads in operating systems, including memory isolation, context switching, and when to use multiprocessing...

Neha Patel

HTTP and HTTPS Deep Dive

A deep dive into how HTTP and HTTPS work, covering request/response structure, methods, status codes, headers, and how TLS secures HTTP traffic today.

Neha Patel

The OSI Model Explained

A clear explanation of the OSI model's seven layers, what each layer actually does, and how real-world protocols like HTTP, TCP, and Ethernet map onto them.

Neha Patel
System Design7 min read

Caching Strategies for System Design

Explore common caching strategies used in system design, including cache-aside, write-through, write-back, and cache invalidation approaches, with trade-offs...

Arjun Mehta
DSA7 min read

Hash Tables Explained

Understand how hash tables achieve near-constant time lookups, how hash functions and collision handling work, and common interview patterns that rely on them.

Neha Patel
DSA7 min read

Sorting Algorithms Explained

A practical explanation of core sorting algorithms including bubble sort, merge sort, and quicksort, with time complexity comparisons and when to use each.

Neha Patel
DSA7 min read

Binary Trees for Beginners

An introduction to binary trees covering traversal methods, binary search trees, common operations, and recursive patterns every beginner should understand.

Neha Patel
DSA7 min read

Linked Lists Explained

A clear introduction to linked lists covering singly and doubly linked lists, common operations, and classic interview patterns like cycle detection and reve...

Neha Patel
DSA7 min read

Arrays and Strings for Coding Interviews

Master arrays and strings for coding interviews with core patterns like two pointers, sliding window, and prefix sums, explained with complexity analysis and...

Neha Patel