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

Which is NOT a valid SQL aggregate function?
FIRST()
click to copy
RANK() vs DENSE_RANK() in SQL: difference is?
RANK() skips numbers after ties; DENSE_RANK() doesn't skip
click to copy
Window functions in SQL operate on?
Set of rows related to current row without collapsing them
click to copy
CTE (Common Table Expression) in SQL is defined using?
WITH clause — named temporary result set
click to copy
Recursive CTE is used for?
Hierarchical data queries (org charts, trees)
click to copy
Execution plan in SQL databases shows?
How the query will be executed (indexes used, join methods, cost)
click to copy
Serverless computing pricing model?
Pay only for actual execution time and resources consumed
click to copy
AWS Lambda maximum execution timeout is?
15 minutes
click to copy
Cold start in serverless refers to?
Latency when a new container/instance initializes for first invocation
click to copy
Event-driven architecture responds to?
Events/triggers automatically — loose coupling between services
click to copy
Message queue vs event stream: event stream?
Retains events for replay by multiple consumers (Kafka)
click to copy
Dead Letter Queue (DLQ) stores?
Messages that failed to process after maximum retry attempts
click to copy
Content Delivery Network (CDN) edge nodes are placed?
Geographically distributed close to end users
click to copy
CDN reduces load on origin server by?
Serving cached content from edge nodes instead of origin
click to copy
Cache invalidation in CDN is triggered by?
Content publisher via API/TTL expiry
click to copy
Which AWS service is an object storage?
S3
click to copy
AWS CloudFront is?
CDN service
click to copy
AWS ELB (Elastic Load Balancer) types include?
ALB, NLB, CLB (Application, Network, Classic)
click to copy
Auto Scaling in cloud automatically?
Adjusts compute capacity based on demand
click to copy
VPC (Virtual Private Cloud) provides?
Isolated private network section within cloud provider infrastructure
click to copy
Security Group in AWS acts as?
Stateful virtual firewall for EC2 instances
click to copy
AWS IAM (Identity and Access Management) manages?
User identities, permissions, and access to AWS resources
click to copy
Principle of Least Privilege in IAM?
Grant only minimum permissions required for the task
click to copy
AWS ARN (Amazon Resource Name) uniquely identifies?
Any AWS resource globally
click to copy
Which service provides managed Kubernetes in AWS?
EKS
click to copy
Which service provides managed containers (without K8s) in AWS?
ECS (Elastic Container Service)
click to copy
AWS Fargate is?
Serverless compute engine for containers (no server management)
click to copy
Blockchain consensus mechanism Proof of Work (PoW) requires?
Computational work (solving cryptographic puzzle) to add a block
click to copy
Proof of Stake (PoS) selects validators based on?
Amount of cryptocurrency staked as collateral
click to copy
Smart contract is?
Self-executing code on blockchain triggered by predefined conditions
click to copy
Ethereum's smart contracts are written in?
Solidity
click to copy
NFT (Non-Fungible Token) represents?
Unique, non-interchangeable digital asset with ownership record on blockchain
click to copy
DeFi (Decentralized Finance) uses?
Blockchain-based financial services without intermediaries
click to copy
Metaverse refers to?
Persistent, interconnected virtual worlds with economic activity
click to copy
Edge computing processes data?
Near the source of data generation (IoT devices, local servers)
click to copy
Fog computing is?
Intermediate layer between edge devices and cloud — extends cloud to network edge
click to copy
5G network slicing allows?
Multiple virtual networks tailored for different use cases on same infrastructure
click to copy
eMBB in 5G stands for?
Enhanced Mobile Broadband — high speed for video/browsing
click to copy
URLLC in 5G stands for?
Ultra Reliable Low Latency Communications
click to copy
mMTC in 5G stands for?
Massive Machine Type Communications — IoT devices
click to copy