Quick Revision

GK One-Line Question & Answer

15541+ short questions with short answers, covering every category and sub-category on the site — no long articles to scroll through. Good for a fast recap before an exam, or a few minutes of daily practice.

Computer Networks → Introduction to Computer Networks 40

What is leader election benefit
Single coordinator preventing conflicting operations
click to copy
What is a write-ahead log (WAL)
Recording changes before applying for crash recovery
click to copy
What is log-structured storage
Appending all writes to log for high write throughput
click to copy
What is LSM tree
Log-Structured Merge tree for efficient writes with compaction
click to copy
What is B-tree in databases
Balanced tree for efficient search reads and range queries
click to copy
What is consistent hashing used for
Distributing load and minimizing reshuffling when nodes join/leave
click to copy
What is sharding in databases
Horizontal partitioning of data across multiple database instances
click to copy
What is database replication lag
Delay between write on primary and availability on replica
click to copy
What is read replica used for
Scaling read operations without loading primary database
click to copy
What is database connection pooling
Reusing database connections to avoid connection overhead
click to copy
What is N+1 query problem
Executing N queries to fetch details after 1 query for list
click to copy
What is database indexing for
Speeding up data retrieval at cost of write overhead
click to copy
What is a composite index
Index on multiple columns together
click to copy
What is database vacuum
Reclaiming storage from deleted or updated rows
click to copy
What is database replication conflict
Same data modified differently on multiple nodes simultaneously
click to copy
What is Lamport logical clock purpose
Capturing event causality in distributed systems
click to copy
What is vector clock purpose
Tracking causality across multiple processes in distributed systems
click to copy
What is gossip protocol convergence
Eventually all nodes receive the same information
click to copy
What is phi accrual failure detector
Adaptive failure detection using historical heartbeat timing
click to copy
What is epidemic broadcast
Information spreading through random pairwise gossip
click to copy
What is anti-entropy in distributed systems
Periodically comparing and synchronizing state between nodes
click to copy
What is read repair in distributed storage
Fixing stale data detected during read operation
click to copy
What is hinted handoff in distributed systems
Temporarily storing writes for unavailable node to deliver later
click to copy
What is a quorum read in distributed systems
Reading from majority of nodes to get latest value
click to copy
What is sloppy quorum
Accepting writes to available nodes even if not all primary quorum nodes
click to copy
What is CRDTs
Conflict-free Replicated Data Types
click to copy
What is Zookeeper znode
Data node in Zookeeper hierarchical namespace
click to copy
What is Zookeeper watch mechanism
Notification when watched znode changes
click to copy
What is etcd revision
Global monotonic counter tracking all changes in cluster
click to copy
What is consensus in distributed systems
All nodes agreeing on same value or decision
click to copy
What is FLP impossibility result
Consensus impossible with one faulty process in async system
click to copy
What is PBFT
Practical BFT
click to copy
What is Tendermint
BFT consensus algorithm used in blockchains
click to copy
What is proof of authority
Consensus using trusted validators (private blockchains)
click to copy
What is smart contract
Self-executing code on blockchain triggered by conditions
click to copy
What is network function chaining (SFC)
Directing traffic through ordered sequence of service functions
click to copy
What is SRv6 SID format
128-bit IPv6 address: locator function argument
click to copy
What is segment routing source routing
Encoding path as stack of segments at ingress node
click to copy
What is TI-LFA coverage guarantee
100 percent
click to copy
What is BGP PIC edge
Pre-computing backup BGP path for fast failover
click to copy