Answer: precision
Explanation: Because accuracy is where you keep on getting it right but precision is where you get closer and closer
“Thinking about pleasant things to pass the time” would not promote safety in the shop because it would be taking the focus away from important tasks, which in turn decreases safety.
Answer:
F = 0.0022N
Explanation:
Given:
Surface area (A) = 4,000mm² = 0.004m²
Viscosity = µ = 0.55 N.s/m²
u = (5y-0.5y²) mm/s
Assume y = 4
Computation:
F/A = µ(du/dy)
F = µA(du/dy)
F = µA[(d/dy)(5y-0.5y²)]
F = (0.55)(0.004)[(5-1(4))]
F = 0.0022N
Answer:
sum2 = 0
counter = 0
lst = [65, 78, 21, 33]
while counter < len(lst):
sum2 = sum2 + lst[counter]
counter += 1
Explanation:
The counter variable is initialized to control the while loop and access the numbers in <em>lst</em>
While there are numbers in the <em>lst</em>, loop through <em>lst</em>
Add the numbers in <em>lst</em> to the sum2
Increment <em>counter</em> by 1 after each iteration