Performance metric terminology in computing: In batch or online processing, what does the term ‘‘turnaround’’ specifically refer to?

Difficulty: Easy

Correct Answer: the elapsed time between the receipt of the input and the availability of the output

Explanation:


Introduction / Context:
Turnaround time is a fundamental performance measure in computing operations and service management. It captures the responsiveness of a system or process, whether for batch jobs (e.g., end-of-day processing) or for on-demand requests (e.g., report generation). Knowing what turnaround means helps managers set service-level targets and diagnose bottlenecks.


Given Data / Assumptions:

  • A request or job is submitted (input is received).
  • Processing occurs, possibly including queuing, I/O, computation, and post-processing.
  • Output becomes available to the requester.


Concept / Approach:
Turnaround is the total elapsed wall-clock time from submission to result availability. It encompasses queue time + processing time + any staging or delivery time. It differs from CPU time (actual compute), throughput (jobs per time unit), and response time (often measured from request to first response in interactive systems). By monitoring turnaround, organizations can prioritize work, allocate resources, and improve user satisfaction.


Step-by-Step Solution:

Mark the timestamp when input is received (t_in). Mark the timestamp when output is available (t_out). Compute turnaround = t_out - t_in. Analyze contributors (queueing, I/O waits, computation) to optimize.


Verification / Alternative check:
Operations reports commonly chart turnaround time distributions to ensure SLAs are being met and to trigger capacity tuning when thresholds are exceeded.


Why Other Options Are Wrong:
They define unrelated concepts (data structure terms, syntax errors) not tied to operational timing.


Common Pitfalls:
Confusing response time with turnaround; ignoring upstream and downstream delays outside pure compute time.


Final Answer:
the elapsed time between the receipt of the input and the availability of the output

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion