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

TPM chip is used for?
Secure key storage, disk encryption, and attestation
click to copy
Secure Boot in UEFI prevents?
Booting unauthorized or unsigned bootloaders and OS
click to copy
GDPR right to erasure means?
Individuals can request their personal data be deleted
click to copy
PII (Personally Identifiable Information) includes?
Name, SSN, email, phone — data identifying specific individuals
click to copy
Data minimization in GDPR means?
Collect only minimum personal data necessary for the specific purpose
click to copy
Turing machine was proposed by?
Alan Turing
click to copy
The Halting Problem is?
Undecidable — no algorithm can determine if arbitrary program halts
click to copy
P vs NP: P class problems are?
Solvable in polynomial time by deterministic Turing machine
click to copy
NP-complete problems are?
Both in NP and as hard as any other NP problem
click to copy
Traveling Salesman Problem (TSP) is?
NP-hard with no known polynomial solution
click to copy
Actor model of concurrency uses?
Independent actors communicating via message passing — no shared state
click to copy
Rust programming language guarantees?
Memory safety without GC using ownership/borrowing system
click to copy
WebAssembly (WASM) is?
Binary instruction format running in browsers at near-native speed
click to copy
JIT (Just-In-Time) compilation?
Compiles frequently executed code at runtime to machine code
click to copy
Garbage collection (GC) in managed languages?
Automatically reclaims unused memory
click to copy
Generational GC is based on?
Most objects die young — frequent minor GC of young generation
click to copy
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

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