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 40

Hybrid cloud combines?
Public and private cloud
click to copy
Multi-cloud strategy uses?
Multiple services from one vendor
click to copy
Object storage vs block storage: object storage is best for?
Unstructured data like images/videos
click to copy
Which is Amazon's object storage service?
S3
click to copy
CDN reduces latency by?
Storing content copies geographically closer to users
click to copy
Stateless application means?
Application doesn't store session state between requests
click to copy
Containerization packages?
Application with all dependencies in isolated container
click to copy
Docker image is?
A read-only template for creating containers
click to copy
Docker container is?
A running instance of an image
click to copy
Kubernetes Pod is?
Smallest deployable unit containing one or more containers
click to copy
Service mesh in microservices handles?
Inter-service communication, load balancing, security
click to copy
Observability in DevOps includes?
Metrics, logging, and tracing
click to copy
MTTR stands for?
Mean Time To Recover
click to copy
MTBF stands for?
Mean Time Between Failures
click to copy
SLA stands for in IT services?
Service Level Agreement
click to copy
Uptime of 99.9% ('three nines') allows how much downtime per year?
About 8.76 hours
click to copy
Which algorithm is used in public key cryptography?
RSA
click to copy
Elliptic Curve Cryptography (ECC) compared to RSA?
Stronger with smaller key size
click to copy
Diffie-Hellman is used for?
Secure key exchange over public channel
click to copy
Perfect Forward Secrecy (PFS) means?
Compromise of long-term key doesn't compromise past session keys
click to copy
Which is the fastest sorting algorithm in average case?
Quick sort
click to copy
Amortized time complexity is?
Average time per operation over sequence of operations
click to copy
Space complexity of merge sort is?
O(n)
click to copy
Quick sort worst case (sorted array with naive pivot) is?
O(n²)
click to copy
Fibonacci series: F(n) = F(n-1) + F(n-2). What is F(6) (starting F(0)=0,F(1)=1)?
8
click to copy
Which data structure represents hierarchical data?
Tree
click to copy
AVL tree is a?
Self-balancing BST
click to copy
B-tree is primarily used in?
Database indexing and file systems
click to copy
Red-Black tree is a?
Self-balancing BST with color properties
click to copy
Trie data structure is used for?
String storage and prefix searching
click to copy
Which is NOT a graph traversal algorithm?
Quick sort
click to copy
Dijkstra's algorithm finds?
Shortest path from source to all vertices
click to copy
Dijkstra's algorithm works correctly for?
Graphs with non-negative weights
click to copy
Bellman-Ford handles?
Negative weights (detects negative cycles)
click to copy
Minimum spanning tree connects all vertices with?
Minimum total edge weight
click to copy
Prim's and Kruskal's algorithms find?
Minimum spanning tree
click to copy
Topological sort is applicable to?
Directed Acyclic Graphs (DAGs)
click to copy
Floyd-Warshall algorithm finds?
All-pairs shortest paths
click to copy
Binary heap supports which operations efficiently?
Insert in O(log n), extract-min/max in O(log n)
click to copy
Hashing collision resolution using chaining?
Uses array of linked lists at each bucket
click to copy