Im not 100% but Im pretty sure the answer is A. Hard hats
Hope this helps :)
Answer: preserves cell formatting and formulas
saves time
avoids copy-paste
organizes data so it is easier to draw comparisons
Explanation: just did it
<span>The finished product is "output." In the electronic computer, data are the raw material or input to the computer.</span>
Answer:
n := length(A)
repeat
swapped := false
for i := 1 to n-1 inclusive do
<em> /* if this pair is out of order */</em>
if A[i-1] > A[i] then
<em> /* swap them and remember something changed */</em>
swap(A[i-1], A[i])
swapped := true
end if ⇒
end for
until not swapped
end procedure

Explanation:
This is pseudocode