Difficulty: Easy
Correct Answer: Polling
Explanation:
Introduction / Context:
When many subordinate devices share a controller or communication line, the system needs an orderly access method. One classic approach has the master ask each device in turn whether it has data to send or needs service, ensuring fairness and preventing collisions on shared media.
Given Data / Assumptions:
Concept / Approach:
Polling is a master-driven access method wherein the controller sequentially queries (“polls”) each device. If a device has traffic, it transmits during its turn; otherwise, the controller moves on. Variants include roll-call polling and hub-go-ahead strategies. Polling contrasts with contention (e.g., CSMA) and scheduled token passing.
Step-by-Step Solution:
Identify the need for orderly, centrally coordinated access.Map this to the technique where the master queries subordinates in sequence.Conclude that the described method is polling.
Verification / Alternative check:
Legacy multidrop serial lines and many industrial fieldbuses used polling to guarantee deterministic behavior, especially where collisions or random access were unacceptable.
Why Other Options Are Wrong:
Dialed service: Refers to connection establishment, not access scheduling.
Common Pitfalls:
Confusing polling with interrupt-driven access; in polling, the master dictates timing rather than devices interrupting spontaneously.
Final Answer:
Polling
Discussion & Comments