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

Black hat hacker is?
Malicious hacker breaking laws
click to copy
Social engineering attacks target?
Human psychology to obtain information
click to copy
Which key is used to access BIOS on most PCs?
F1, Del, or Esc (at boot)
click to copy
Secure Boot prevents?
Booting unauthorized/unsigned OS or bootloaders
click to copy
UEFI is the modern replacement for?
BIOS
click to copy
Which Windows feature creates system restore points?
System Restore
click to copy
The clock cycle is the basic unit of?
CPU operation timing
click to copy
IPC stands for in OS?
Inter-Process Communication
click to copy
Shared memory IPC?
Allows direct memory access between processes
click to copy
Message passing IPC?
Processes communicate by sending/receiving messages
click to copy
Fork() system call in Unix?
Creates a copy of the calling process
click to copy
exec() system call?
Replaces current process image with new program
click to copy
A race condition occurs when?
Two processes access shared resource simultaneously causing incorrect results
click to copy
Critical section problem solution requires?
Mutual exclusion, progress, bounded waiting
click to copy
Peterson's algorithm solves?
Critical section problem for two processes
click to copy
Which scheduling is preemptive?
Round Robin
click to copy
Convoy effect is a problem in?
FCFS scheduling
click to copy
Starvation in scheduling means?
Process waits indefinitely due to low priority
click to copy
Aging technique in scheduling?
Increases process priority over time to prevent starvation
click to copy
Banker's algorithm is used to?
Avoid deadlock by resource allocation checking
click to copy
Which of the following is a deadlock avoidance strategy?
Banker's algorithm
click to copy
LRU page replacement algorithm replaces?
Least recently used page
click to copy
FIFO page replacement replaces?
Oldest page in memory
click to copy
Optimal page replacement algorithm?
Replaces the page not used for longest time in future
click to copy
Bélády's anomaly occurs in?
FIFO
click to copy
Working set model is related to?
Page replacement and memory management
click to copy
File allocation table (FAT) stores?
Location of file data clusters on disk
click to copy
Inode in Linux stores?
File metadata (permissions, size, location)
click to copy
Hard link in Linux?
Points to same inode as original
click to copy
Soft link (symbolic link) in Linux?
Points to path/name of original file
click to copy
What does chmod 755 mean?
Read-write-execute for owner; read-execute for group and others
click to copy
Root user in Linux has UID?
0
click to copy
Which command shows network interfaces in Linux?
ifconfig or ip addr
click to copy
Which command installs packages in Ubuntu?
apt install
click to copy
Which command installs packages in CentOS/RHEL?
yum install / dnf install
click to copy
What is /etc in Linux?
System configuration files
click to copy
What is /var in Linux?
Variable data files (logs, spools, databases)
click to copy
What is /tmp in Linux?
System temp files (cleared on reboot)
click to copy

Computer Fundamentals → Operating System Basics 1

Which is a real-time operating system example?
VxWorks
click to copy

Computer Fundamentals → Output Devices 1

Monitor in OS synchronization is?
High-level synchronization construct
click to copy