A production planner reviews a route operation for a manufacturing order. How long, in hours, is the total processing time for this operation?
Exhibit
Refer to the exhibit.
{
"routeId": "ROUTE-MFG-001",
"operationNumber": "10",
"operationDescription": "Cutting",
"resourceId": "SAW-01",
"resourceGroupId": "METAL_SHOP",
"runTimeHours": 0.5,
"setupTimeHours": 0.25
}Trap 1: 1.0
1.0 is incorrect; the correct sum is 0.75.
Trap 2: 0.25
0.25 is only the setup time.
Trap 3: 0.5
0.5 is only the run time.
- A
0.75
0.75 is the sum of setup and run time.
- B
1.0
Why wrong: 1.0 is incorrect; the correct sum is 0.75.
- C
0.25
Why wrong: 0.25 is only the setup time.
- D
0.5
Why wrong: 0.5 is only the run time.