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 38

The term 'Artificial Intelligence' was coined by?
John McCarthy at Dartmouth Conference in 1956
click to copy
ChatGPT was launched publicly in?
November 2022
click to copy
Which company developed the GPT series of language models?
OpenAI
click to copy
Gemini AI is developed by?
Google DeepMind
click to copy
Bluetooth is named after?
Harald Bluetooth — 10th century Danish king who united tribes
click to copy
Wi-Fi stands for?
It's not an acronym — it's a brand name by Wi-Fi Alliance
click to copy
Which programming language is used for iOS development?
Swift (and Objective-C)
click to copy
Kotlin is the preferred language for?
Android development (Google's official preferred language since 2017)
click to copy
Flutter framework uses which programming language?
Dart
click to copy
React Native is used for?
Cross-platform mobile app development using JavaScript/React
click to copy
Which IDE is most popular for Python development?
PyCharm / VS Code
click to copy
IntelliJ IDEA is primarily used for?
Java development (and Kotlin, Scala, Groovy)
click to copy
Which VCS command stages files for commit in Git?
git add
click to copy
Which Git command downloads remote repository changes?
git fetch / git pull
click to copy
git clone does?
Creates local copy of a remote repository
click to copy
Which git command shows commit history?
git log
click to copy
git stash is used to?
Temporarily save uncommitted changes to work on something else
click to copy
What is a git branch?
An independent line of development that diverges from the main codebase
click to copy
git merge combines?
Changes from different branches into the current branch
click to copy
git rebase vs git merge?
Rebase rewrites history creating linear commits; merge preserves branch history with merge commit
click to copy
GitHub Actions is used for?
CI/CD automation — automated workflows triggered by repository events
click to copy
Which GitHub feature allows code review before merging?
Pull Request (PR) / Merge Request (MR)
click to copy
Agile Sprint is?
Fixed time iteration (1-4 weeks) for completing planned work items
click to copy
Scrum Master role is?
Facilitates Scrum process, removes impediments, serves the team
click to copy
User Story in Agile is?
Brief description of feature from end user perspective (As a... I want... So that...)
click to copy
Sprint Retrospective is?
Team meeting after sprint to discuss what went well, what to improve
click to copy
Kanban board visualizes?
Workflow with columns (To Do, In Progress, Done) for task management
click to copy
WIP limit in Kanban?
Restricts number of items in each workflow stage to prevent overload
click to copy
Technical debt in software refers to?
Cost of shortcuts and poor design choices that need future rework
click to copy
Code refactoring means?
Improving code structure without changing external behavior
click to copy
Pair programming involves?
Two developers working together at one workstation simultaneously
click to copy
Code review benefits include?
Catching bugs early, knowledge sharing, and improving code quality
click to copy
API versioning strategies include?
URL path (/v1/), header, and query parameter versioning
click to copy
Webhook vs polling: webhook?
Server pushes data to client URL when event occurs — more efficient
click to copy
Which HTTP status code indicates 'Created' (after POST)?
201
click to copy
HTTP 204 No Content means?
Request succeeded but there is no content to return in response body
click to copy
GraphQL advantages over REST?
Single endpoint, client specifies exact data needed — no over/under-fetching
click to copy
gRPC compared to REST?
Faster — uses HTTP/2 + Protocol Buffers binary serialization for efficiency
click to copy

Computer Fundamentals → Input Devices 1

The first computer mouse was invented by?
Douglas Engelbart in 1963/1964
click to copy

Computer Fundamentals → Internet Basics 1

Internet of Things (IoT) refers to?
Network of physical devices with sensors connected to internet
click to copy