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

Sandboxing in security?
Runs untrusted code in isolated environment
click to copy
Penetration testing should be done?
With explicit written authorization
click to copy
CVE stands for in security?
Common Vulnerabilities and Exposures
click to copy
OWASP stands for?
Open Web Application Security Project
click to copy
OWASP Top 10 is?
List of most critical web application security risks
click to copy
Which attack targets the application layer (Layer 7)?
HTTP flood/DDoS
click to copy
SYN flood attack exploits?
TCP three-way handshake
click to copy
TCP three-way handshake steps are?
SYN, SYN-ACK, ACK
click to copy
Which OSI layer does TLS/SSL secure?
Between layers 4 and 7
click to copy
Hash function is one-way because?
Given hash, original data cannot be derived
click to copy
SHA-256 produces a hash of?
256 bits
click to copy
MD5 is now considered?
Deprecated — vulnerable to collisions
click to copy
Which of the following is NOT a cloud service model?
HaaS (Hardware as a Service)
click to copy
Elasticity in cloud computing means?
Automatically scaling resources up or down based on demand
click to copy
Pay-as-you-go in cloud computing?
Pay only for resources consumed
click to copy
Which cloud deployment model serves only one organization?
Private cloud
click to copy
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