Which of the following is a type of memory management that uses variable-sized partitions? MCQ with Answer and Explanation

Which of the following is a type of memory management that uses variable-sized partitions?
A. Paging
B. Fixed partitioning
C. Segmentation
D. Buddy system
Answer: Option C
Solution (By JKExamLibrary)
Segmentation allows variable-size memory segments based on logical units; paging uses fixed-size pages.

This question belongs to: Computer Operating Systems

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Operating Systems Questions

Question #1 Report Error
Which scheduling algorithm assigns the CPU to the process with the shortest execution time, requiring advance knowledge of task durations?
A. First-Come, First-Served (FCFS)
B. Priority Queue Allocation
C. Shortest Job First (SJF)
D. Round Robin (RR)

Correct Answer: Option C


Explanation:
The Shortest Job First (SJF) scheduling policy chooses the process with the smallest CPU burst requirement next, minimizing average wait times.

This question belongs to: Computer Operating Systems
Question #2 Report Error
Which command in Windows is used to check the integrity of system files?
A. sfc /scannow
B. dism
C. systeminfo
D. chkdsk

Correct Answer: Option A


Explanation:
System File Checker (sfc /scannow) scans and repairs corrupted system files in Windows.

This question belongs to: Computer Operating Systems
Question #3 Report Error
What is the purpose of the Android 'GestureDetector' class?
A. To manage touch events
B. To handle motion events
C. To detect common gestures like tap, scroll, fling, and long press
D. To provide haptic feedback

Correct Answer: Option C


Explanation:
GestureDetector simplifies detection of gestures from touch events, allowing easy implementation of gesture interactions.

This question belongs to: Computer Operating Systems