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 → Computer Security 1

Windows Firewall is found in?
Control Panel > Windows Defender Firewall
click to copy

Computer Fundamentals → Introduction to Computer 36

System Restore in Windows creates?
Restore points to revert system to previous working state
click to copy
Windows Event Viewer shows?
System, security, and application log entries
click to copy
Which file is Windows boot configuration stored in?
BCD (Boot Configuration Data) in Windows 7+
click to copy
NTFS permissions in Windows include?
Read, Write, Modify, Full Control, List Folder Contents
click to copy
UAC (User Account Control) in Windows?
Prompts for confirmation when apps request elevated privileges
click to copy
Windows Sandbox provides?
Temporary isolated desktop for running untrusted software safely
click to copy
Which command in Windows shows running processes?
tasklist
click to copy
The 'net user' command in Windows?
Manages user accounts from command line
click to copy
PowerShell vs Command Prompt: PowerShell?
Is more powerful with object pipeline and .NET integration
click to copy
Get-Process cmdlet in PowerShell?
Lists running processes (equivalent to tasklist)
click to copy
WSL (Windows Subsystem for Linux) allows?
Running Linux binaries natively on Windows without VM
click to copy
Which Windows feature creates automatic file backups?
Shadow Copy (VSS)
click to copy
BitLocker in Windows provides?
Full disk encryption
click to copy
EFS (Encrypting File System) in Windows?
Encrypts individual files/folders transparently using user certificates
click to copy
Windows Hyper-V is a?
Type 1 hypervisor built into Windows for running virtual machines
click to copy
Which command creates a symbolic link in Windows?
mklink
click to copy
Windows Subsystem for Android (WSA) allows?
Running Android apps on Windows 11
click to copy
macOS is based on?
BSD Unix (Darwin kernel)
click to copy
Spotlight search in macOS is accessed by?
Cmd+Space
click to copy
Time Machine in macOS is?
Automated backup system with hourly, daily, and weekly backups
click to copy
Homebrew in macOS is?
Package manager for installing software on macOS/Linux
click to copy
Terminal command 'top' in macOS/Linux shows?
Real-time system resource usage and running processes
click to copy
Unix philosophy states?
Write programs that do one thing well and work together via text streams
click to copy
Which Linux distribution is most commonly used on servers?
Ubuntu Server / CentOS / Red Hat Enterprise Linux
click to copy
Kali Linux is used for?
Penetration testing and security auditing (preloaded security tools)
click to copy
Android is based on?
Linux kernel with custom runtime (ART)
click to copy
ChromeOS is based on?
Linux kernel with Chrome browser as main interface
click to copy
Which OS uses APK packages?
Android
click to copy
iOS App Store review process is?
Mandatory App Store review by Apple before app publication
click to copy
Package manager 'pip' is for?
Python packages
click to copy
npm is package manager for?
Node.js / JavaScript
click to copy
Virtual environment in Python (venv) is used to?
Create isolated Python environments with separate dependencies per project
click to copy
conda is a package manager for?
Python and R scientific computing packages and environments
click to copy
shebang line (#!/usr/bin/python3) in scripts?
Specifies which interpreter to use when script is executed directly
click to copy
Which SQL statement is used to create a new database?
CREATE DATABASE
click to copy
Which SQL command selects all columns?
SELECT *
click to copy

Computer Fundamentals → Memory Units 1

Virtual memory in Windows is configured in?
System Properties > Advanced > Performance > Virtual Memory
click to copy

Computer Fundamentals → Operating System Basics 1

iOS kernel is named?
XNU (X is Not Unix) — hybrid kernel from Mach and BSD
click to copy

Computer Fundamentals → Software and Hardware 1

Which command starts Python interpreter interactively?
python
click to copy