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 33

MAC address operates at which OSI layer?
Layer 2 (Data Link)
click to copy
Which device operates at all 7 OSI layers?
Firewall / Application gateway
click to copy
TLS operates between which layers?
L4 and L7 (between Transport and Application)
click to copy
Which of these is NOT a valid IP version?
IPv5
click to copy
Default gateway is?
Router IP that handles traffic destined outside the local network
click to copy
Which command tests network connectivity in Linux?
ping
click to copy
netstat -an command shows?
All active network connections and listening ports with numeric addresses
click to copy
ss command in Linux replaces?
netstat command for showing socket statistics
click to copy
Which command shows routing table in Linux?
route -n / ip route show
click to copy
iptables in Linux is used for?
Firewall rules for packet filtering and NAT
click to copy
nftables replaces which Linux tool?
iptables (newer, unified framework)
click to copy
tcpdump is used for?
Capturing and analyzing network packets at command line
click to copy
Which command shows disk usage in Linux?
df -h (disk free) and du -sh (disk usage)
click to copy
free -h in Linux shows?
Memory (RAM and swap) usage in human-readable format
click to copy
Which Linux command compresses files using gzip?
gzip file / tar -czf archive.tar.gz
click to copy
crontab -e opens?
User's cron job editor for scheduling recurring tasks
click to copy
Which Linux command changes file ownership?
chown user:group file
click to copy
Which shortcut in Linux terminal clears the screen?
Ctrl+L (or 'clear' command)
click to copy
How many Kilobytes in a Megabyte?
1024
click to copy
How many bits in a byte?
8
click to copy
The term 'bug' in computing refers to?
Error or flaw in software/hardware causing malfunction
click to copy
Debugging is the process of?
Finding and fixing errors in computer programs
click to copy
The ALU is part of which component?
CPU
click to copy
Random Access Memory is called 'random access' because?
Any memory location can be accessed in equal time regardless of position
click to copy
Which type of computer is used for scientific calculations requiring high speed?
Supercomputer
click to copy
Mainframe computers are used for?
Large-scale enterprise transaction processing (banking, airlines)
click to copy
Embedded computer systems are found in?
Microwave ovens, washing machines, cars, medical devices
click to copy
Which is the smallest category of computer?
Wearable/embedded
click to copy
Analog vs Digital: analog signals are?
Continuous, infinite precision values (voltage, current)
click to copy
Digitization converts?
Analog signals to digital representation (sampling + quantization)
click to copy
Sampling rate in audio is measured in?
Hz (samples per second) — CD quality is 44,100 Hz
click to copy
Bit depth in audio determines?
Resolution of each sample — CD uses 16-bit = 65,536 possible amplitude levels
click to copy
MIDI stands for?
Musical Instrument Digital Interface
click to copy

Computer Fundamentals → Number System 2

1 Nibble equals how many bits?
4
click to copy
How many bytes in a Kilobyte (binary)?
1024
click to copy

Computer Fundamentals → Software and Hardware 2

Which of the following is an example of system software?
Device drivers
click to copy
Application software is designed for?
End users to perform specific tasks (word processing, browsing, gaming)
click to copy

Computer Fundamentals → Memory Units 3

Which component executes program instructions?
ROM
click to copy
ROM is non-volatile because?
It retains data even when power is removed
click to copy
Flash memory in USB drives is which type?
Non-volatile EEPROM-based storage
click to copy