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 Fundamentals → Introduction to Computer 38

LLVM is?
Compiler infrastructure providing reusable compiler and toolchain components
click to copy
Formal verification mathematically?
Proves software correctness against specification
click to copy
Lambda calculus was developed by?
Alonzo Church — foundation of functional programming
click to copy
Regular language is recognized by?
Finite automaton (DFA/NFA)
click to copy
Context-free language recognized by?
Pushdown automaton (PDA)
click to copy
Turing complete means?
Can simulate any Turing machine — compute any computable function
click to copy
OFDM is used in?
WiFi, 4G LTE, 5G — robust multipath channel transmission
click to copy
Shannon channel capacity theorem states?
Maximum error-free data rate = B x log2(1 + S/N)
click to copy
Nyquist rate for a channel is?
Maximum symbol rate = 2B (twice the bandwidth) for noiseless channel
click to copy
Which Indian IIT/institute is connected via NKN?
IITs, IIMs, universities and research institutions through National Knowledge Network
click to copy
TRAI regulates?
Telecom and broadcast services including internet in India
click to copy
RMSSSB stands for?
Rajasthan Ministerial and Subordinate Service Selection Board
click to copy
Huffman coding is?
Lossless variable-length encoding minimizing average code length
click to copy
LZ77 compression is used in?
ZIP files and deflate (gzip) — dictionary-based sliding window compression
click to copy
JPEG uses which type of compression?
Lossy DCT (Discrete Cosine Transform) based block compression
click to copy
PNG uses which compression?
DEFLATE (LZ77 + Huffman) applied to filtered image data — lossless
click to copy
Which format supports transparency fully?
PNG
click to copy
Burrows-Wheeler Transform (BWT) is used in?
bzip2 compression — reorganizes data for better compression
click to copy
Run-Length Encoding (RLE) is most effective for?
Data with long runs of identical values
click to copy
Delta encoding stores?
Difference from reference value — efficient for slowly changing data
click to copy
Which image format supports animation?
GIF
click to copy
WebP image format provides?
Both lossy and lossless compression with ~30% smaller than JPEG/PNG
click to copy
Minimum spanning tree algorithms include?
Prim's and Kruskal's algorithms
click to copy
Topological sort applies to?
Directed Acyclic Graphs (DAGs)
click to copy
Floyd-Warshall algorithm finds?
All-pairs shortest paths using dynamic programming
click to copy
Bloom filter is a?
Probabilistic space-efficient structure — no false negatives, possible false positives
click to copy
Skip list provides?
O(log n) average search with probabilistic balance
click to copy
Consistent hashing is used in?
Distributed systems for even load distribution as nodes join/leave
click to copy
Which sorting is stable?
Merge sort
click to copy
TimSort (Python's default sort) is based on?
Natural runs plus merge sort — optimized for real-world partially sorted data
click to copy
LCS (Longest Common Subsequence) has complexity?
O(n x m) using dynamic programming
click to copy
KMP string matching algorithm runs in?
O(n+m) using failure function
click to copy
Aho-Corasick algorithm performs?
Multi-pattern string matching in O(n + sum of pattern lengths + matches)
click to copy
Which data structure implements priority queue most efficiently?
Binary heap
click to copy
Segment tree supports?
Range queries and point updates in O(log n)
click to copy
Fenwick tree (BIT) is used for?
Efficient prefix sum queries and point updates in O(log n)
click to copy
DSU (Disjoint Set Union) with optimizations achieves?
Near O(1) amortized per operation (inverse Ackermann function)
click to copy
Gradient descent minimizes?
Loss function by iteratively adjusting weights in negative gradient direction
click to copy

Computer Fundamentals → Memory Units 2

Chomsky hierarchy from most to least restricted?
Regular < Context-free < Context-sensitive < Recursively enumerable
click to copy
Coroutine differs from thread in?
Cooperative scheduling — yields control explicitly vs preemptive thread scheduling
click to copy