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 37

TIM (Thermal Interface Material) between CPU and cooler?
Fills microscopic gaps to improve heat transfer
click to copy
Which socket uses LGA (Land Grid Array) design where pins are on the socket?
Both Intel LGA and AMD AM5
click to copy
PGA (Pin Grid Array) socket has pins on?
CPU package
click to copy
Which bus connects CPU to PCH (Platform Controller Hub) on modern motherboards?
DMI (Direct Media Interface)
click to copy
Chipset on a motherboard handles?
I/O operations, USB, SATA, PCIe routing for peripheral connections
click to copy
POST beep codes are used to?
Identify hardware failures through audio patterns
click to copy
UEFI advantages over legacy BIOS include?
Supports GPT, drives >2TB, faster boot, GUI interface
click to copy
Secure Boot in UEFI prevents?
Loading of unsigned/unauthorized bootloaders and OS
click to copy
TPM (Trusted Platform Module) chip is used for?
Secure key storage, disk encryption, attestation
click to copy
TPM 2.0 is required for?
Windows 11
click to copy
Which technology allows CPU to access GPU memory and vice versa (AMD)?
Smart Access Memory (SAM/Resizable BAR)
click to copy
NVLink is used to?
Connect two NVIDIA GPUs for multi-GPU configurations
click to copy
Which technology connects multiple monitors to one DisplayPort?
MST (Multi-Stream Transport)
click to copy
Thunderbolt 3/4 is based on which physical connector?
USB-C
click to copy
Which GPU memory type offers highest bandwidth for modern GPUs?
HBM2e
click to copy
CPU cache coherency ensures?
Multiple CPU cores see consistent memory values
click to copy
MESI protocol states are?
Modified, Exclusive, Shared, Invalid
click to copy
False sharing in multi-core CPUs occurs when?
Different variables in same cache line cause unnecessary invalidation
click to copy
NUMA (Non-Uniform Memory Access) architecture means?
Memory access time depends on which CPU accesses which memory bank
click to copy
Which bus standard replaced AGP for graphics cards?
PCIe (PCI Express)
click to copy
PCIe bandwidth is measured per direction, so x16 PCIe 4.0 total bandwidth is?
32 GB/s
click to copy
Which storage connector is used for laptop storage today?
M.2 NVMe primarily
click to copy
UFS (Universal Flash Storage) in smartphones is?
Faster than eMMC with command queue support
click to copy
Which expansion card adds Thunderbolt to a desktop PC?
Thunderbolt add-in card
click to copy
Which scheduling algorithm is used in Linux by default?
CFS (Completely Fair Scheduler)
click to copy
CFS in Linux uses which data structure?
Red-black tree
click to copy
Which signal in Linux cannot be caught or ignored?
SIGKILL
click to copy
D-Bus in Linux is used for?
Inter-process communication between desktop applications
click to copy
systemd in Linux replaces?
init (SysV init)
click to copy
Which systemd command starts a service?
systemctl start
click to copy
Docker Compose is used for?
Defining and running multi-container applications
click to copy
Dockerfile is used to?
Define instructions to build a Docker image
click to copy
Which Linux command shows all Docker containers (including stopped)?
docker ps -a
click to copy
Kubernetes deployment ensures?
Desired number of pod replicas are always running
click to copy
Kubernetes Service provides?
Stable network endpoint for accessing pods (load balances)
click to copy
Kubernetes Ingress manages?
External HTTP/HTTPS access to services
click to copy
Helm in Kubernetes is?
Package manager for Kubernetes applications (charts)
click to copy

Computer Fundamentals → Memory Units 3

eMMC storage used in budget devices differs from NVMe in?
Speed — eMMC is much slower (similar to SATA) and soldered
click to copy
Server-grade RAM uses which DIMM type for capacity and stability?
RDIMM/LRDIMM
click to copy
Containerization differs from virtualization primarily because?
Containers share host OS kernel — lighter and faster
click to copy