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

Dropout regularization in neural networks?
Randomly deactivates neurons during training to prevent overfitting
click to copy
CNN (Convolutional Neural Network) is specialized for?
Processing grid-like data such as images
click to copy
RNN (Recurrent Neural Network) processes?
Sequential data with memory of previous inputs
click to copy
BERT is pre-trained using?
Masked Language Modeling (MLM) and Next Sentence Prediction (NSP)
click to copy
Precision in ML classification is?
TP/(TP+FP) — of all predicted positive, how many are actually positive
click to copy
Recall (Sensitivity) is?
TP/(TP+FN) — of all actual positives, how many were correctly identified
click to copy
K-fold cross-validation?
K folds — train on K-1, validate on 1, repeat K times
click to copy
Random forest is ensemble of?
Decision trees trained on random subsets with feature randomness
click to copy
XGBoost is based on?
Gradient boosted decision trees with regularization
click to copy
ACID vs BASE: BASE means?
Basically Available, Soft-state, Eventually consistent
click to copy
ETL stands for?
Extract, Transform, Load
click to copy
Star schema in data warehouse has?
Central fact table surrounded by dimension tables
click to copy
OLAP vs OLTP: OLAP is for?
Analytical queries on large datasets (data warehousing)
click to copy
Elasticsearch is primarily used for?
Full-text search and log analytics
click to copy
SLA stands for?
Service Level Agreement
click to copy
MTTR stands for?
Mean Time To Recover
click to copy
MTBF stands for?
Mean Time Between Failures
click to copy
99.9% uptime (three nines) allows how much downtime per year?
About 8.76 hours
click to copy
High availability refers to?
System designed to minimize downtime with redundancy
click to copy
Disaster Recovery RPO stands for?
Recovery Point Objective — maximum acceptable data loss
click to copy
RTO in disaster recovery?
Recovery Time Objective — maximum time to restore service
click to copy
Which Python web framework is full-featured?
Django
click to copy
Node.js enables?
JavaScript on server-side via V8 engine and event loop
click to copy
Docker image is?
A read-only template for creating containers
click to copy
Docker container is?
A running instance of a Docker image
click to copy
Kubernetes Pod is?
Smallest deployable unit containing one or more containers
click to copy
Kubernetes Deployment ensures?
Desired number of pod replicas are always running
click to copy
CI/CD stands for?
Continuous Integration/Continuous Deployment
click to copy
Git command to stage files for commit?
git add
click to copy
Git command to download remote changes?
git fetch or git pull
click to copy
GitHub Pull Request allows?
Code review before merging into main branch
click to copy
User Story format is?
As a [user], I want [feature], so that [benefit]
click to copy
Technical debt refers to?
Cost of shortcuts and poor design choices that need future rework
click to copy
TDD (Test-Driven Development) workflow?
Write failing test, write code to pass, refactor
click to copy
Which HTTP method is idempotent but NOT safe?
PUT
click to copy
HTTP/2 improvements over HTTP/1.1?
Binary framing, header compression, multiplexing, server push
click to copy
GraphQL advantage over REST?
Single endpoint, client specifies exact data needed — no over/under-fetching
click to copy
Which tool generates API documentation?
Swagger / OpenAPI specification
click to copy
Which is NOT a valid IP version in use?
IPv5
click to copy
Subnet mask /24 equals?
255.255.255.0
click to copy