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

DMZ in network security is?
Network segment between internet and internal network for public servers
click to copy
Social engineering targets?
Human psychology — manipulating people rather than systems
click to copy
Defense in depth uses?
Multiple overlapping security layers
click to copy
Which component is called the heart of the computer?
Motherboard
click to copy
BIOS stands for?
Basic Input Output System
click to copy
Which wattage PSU for high-end gaming PC?
650W-850W
click to copy
TIM between CPU and cooler?
Fills microscopic gaps to improve heat transfer
click to copy
USB Power Delivery (USB-PD) provides up to?
100W (USB-PD 3.0)
click to copy
Which HTML tag creates a hyperlink?
<a href>
click to copy
Cookie in web technology is?
Small data file stored in browser by website to remember user info
click to copy
HTML5 video element is?
<video>
click to copy
REST API HTTP DELETE method is used for?
Deleting resources
click to copy
Which protocol is connectionless?
UDP (User Datagram Protocol)
click to copy
TCP three-way handshake steps are?
SYN, SYN-ACK, ACK
click to copy
Windows Registry stores?
OS and application configuration in hierarchical database
click to copy
Which Linux command lists directory contents?
ls
click to copy
Which Linux command changes directory?
cd
click to copy
chmod in Linux is used to?
Change file permissions
click to copy
grep command in Linux?
Search text patterns in files
click to copy
sudo in Linux means?
Super user do
click to copy
Which Linux command shows disk usage?
df -h (disk free) and du -sh
click to copy
ping command tests?
Network connectivity and latency
click to copy
Which command installs packages in Ubuntu?
apt install
click to copy
Process 1 (PID 1) in Linux is?
init/systemd
click to copy
Which Linux command shows running processes?
ps
click to copy
SIGKILL signal in Linux?
Forcefully terminates process — cannot be caught or ignored
click to copy
Linux root user has UID?
0
click to copy
Encrypted passwords in Linux are stored in?
/etc/shadow
click to copy
Which is the correct SQL to select all columns?
SELECT *
click to copy
SQL LIKE wildcard for multiple characters is?
%
click to copy
PRIMARY KEY constraint?
Uniquely identifies each record, cannot be null
click to copy
FOREIGN KEY creates relationship between?
Two different tables
click to copy
Which SQL command modifies existing records?
UPDATE
click to copy
Index in database improves?
Data retrieval speed
click to copy
Normalization in databases aims to?
Reduce data redundancy and improve integrity
click to copy
Which JOIN returns only matching rows?
INNER JOIN
click to copy
LEFT JOIN returns?
All rows from left table plus matching from right (NULL where no match)
click to copy
SQL stored procedure advantages include?
Pre-compiled execution, reduced network traffic, code reuse
click to copy
SQL VIEW is?
Virtual table based on a query
click to copy
ACID property Atomicity means?
All operations in a transaction succeed or none do
click to copy