Which of the following is a type of real-time scheduling algorithm? MCQ with Answer and Explanation

Which of the following is a type of real-time scheduling algorithm?
A. Round Robin
B. Priority Inheritance
C. Lottery Scheduling
D. Rate Monotonic
Answer: Option D
Solution (By JKExamLibrary)
Rate Monotonic is a fixed-priority real-time scheduling algorithm for periodic tasks; others are general-purpose.

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
What is the purpose of the Android 'WallpaperService'?
A. To draw wallpapers
B. To set wallpapers
C. To create live wallpapers that run as a service
D. To manage wallpapers

Correct Answer: Option C


Explanation:
WallpaperService is the base class for live wallpapers, enabling animations and interactive backgrounds.

This question belongs to: Computer Operating Systems
Question #2 Report Error
What command-line tool can be used in Linux to find the configuration metadata of network interfaces and IP addresses?
A. netstat -s
B. ping
C. ip address (or ifconfig)
D. ipconfig

Correct Answer: Option C


Explanation:
Linux environments use the modern 'ip address' command (or legacy 'ifconfig') to inspect network card settings, MAC paths, and assigned IP values.

This question belongs to: Computer Operating Systems
Question #3 Report Error
Which Linux command changes the file ownership designation from one user account to another?
A. passwd
B. chown
C. chgrp
D. chmod

Correct Answer: Option B


Explanation:
The 'chown' command stands for change owner, used by administrators to alter individual user ownership assignments on files or folders.

This question belongs to: Computer Operating Systems