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 39

Emulation vs simulation: emulation?
Reproduces exact behavior of another system on different hardware (functional)
click to copy
QEMU is used for?
Machine emulation and virtualization (full system emulation)
click to copy
KVM (Kernel-based Virtual Machine) in Linux is?
Type 1 hypervisor built into Linux kernel — uses hardware virtualization
click to copy
Intel VT-x and AMD-V are?
CPU hardware virtualization extensions enabling efficient hypervisors
click to copy
IOMMU (Intel VT-d / AMD-Vi) enables?
Secure direct device assignment to VMs — DMA protection
click to copy
Live migration of VMs transfers?
Running VM state (memory, CPU) to another host with minimal downtime
click to copy
Memory ballooning in virtualization?
Dynamically adjusts VM memory allocation by inflating/deflating balloon driver
click to copy
Memory deduplication (KSM in Linux) saves memory by?
Identifying identical memory pages across VMs and sharing them (Copy-on-Write)
click to copy
SR-IOV (Single Root I/O Virtualization) allows?
Physical NIC to present multiple virtual functions (VFs) for direct VM assignment
click to copy
DPDK (Data Plane Development Kit) enables?
User-space packet processing bypassing kernel for high-performance networking
click to copy
XDP (eXpress Data Path) in Linux provides?
High-performance packet processing in the kernel driver layer using eBPF
click to copy
P4 programming language is used for?
Programming the data plane of network devices (packet processing logic)
click to copy
SmartNIC (DPU) offloads to the NIC?
Networking, security, and storage functions from the CPU
click to copy
In-band network telemetry (INT) collects?
Per-packet path and queue data embedded in data plane packets
click to copy
Network digital twin provides?
Virtual replica of network for simulation, testing, and what-if analysis
click to copy
Zero-touch provisioning (ZTP) automates?
New device boot and configuration from central server without manual intervention
click to copy
GitOps applies Git workflows to?
Infrastructure and network configuration management — Git as single source of truth
click to copy
Service mesh data plane proxies like Envoy handle?
Inter-service traffic — load balancing, retries, circuit breaking, observability
click to copy
Istio service mesh uses Envoy as?
Data plane sidecar proxy injected alongside each service
click to copy
mTLS (Mutual TLS) in service mesh provides?
Both client and server authenticate each other — service-to-service identity
click to copy
Service Account in Kubernetes provides?
Identity for pods to authenticate with Kubernetes API and other services
click to copy
RBAC in Kubernetes controls?
Who can perform which actions on which resources in the cluster
click to copy
Pod Security Standards (PSS) in Kubernetes define?
Security contexts and constraints for pod workloads (privileged, baseline, restricted)
click to copy
OPA (Open Policy Agent) provides?
Policy-as-code for unified authorization across cloud-native stack
click to copy
Falco detects?
Runtime security threats by monitoring Linux system calls
click to copy
Supply chain security in software ensures?
Integrity and authenticity of code, dependencies, and build artifacts
click to copy
SLSA (Supply Chain Levels for Software Artifacts) framework provides?
Graduated security requirements for software build and source integrity
click to copy
Sigstore provides?
Transparent, keyless signing of software artifacts using OIDC identity
click to copy
SBOM (Software Bill of Materials) lists?
All software components, dependencies, and their versions in a product
click to copy
CSPM (Cloud Security Posture Management) continuously?
Assesses cloud infrastructure against security best practices and compliance
click to copy
CWPP (Cloud Workload Protection Platform) protects?
Running workloads (VMs, containers) with runtime security and vulnerability management
click to copy
CNAPP combines?
CSPM and CWPP into unified cloud-native application protection platform
click to copy
eBPF security tools like Tetragon provide?
Kernel-level security observability and enforcement without kernel modules
click to copy
Runtime application self-protection (RASP) is?
Security protection built into the application runtime — detects and prevents attacks in real time
click to copy
API gateway provides?
Centralized API management — rate limiting, auth, routing, monitoring
click to copy
Rate limiting prevents?
API abuse by limiting requests per time period per client
click to copy
mTLS vs TLS: mTLS adds?
Client certificate authentication in addition to server certificate
click to copy
Service-to-service authentication without secrets using SPIFFE/SPIRE provides?
Workload identity via X.509 SVIDs automatically issued to workloads
click to copy
Which sorting has best worst-case and is stable?
Merge sort
click to copy

Computer Fundamentals → Computer Security 1

WAF (Web Application Firewall) protects against?
Application layer attacks (SQLi, XSS, CSRF, etc.)
click to copy