Answer: Her estimate is incorrect because she has to have 25 trucks to be able to ship all her boxes.
Step-by-step explanation: Divide 539 by 22 and if there is a remainder then you need to have one more because you cant take half a truck.
539/22=24.5. Since there is a remainder, you will need 25 trucks total
Answer: 
Step-by-step explanation:
Given : An equation relating packets to bytes of information :
where<em> p</em> represents the number of packets and <em>b</em> represents the number of bytes of information.
1 byte = 8 bits
Let x= Number of bits such that 1 b = 8x
Put b = 8x in given equation , we get

Divide both sides by 8 , we get

Hence, the equation represent the relationship between the number of packets and the number of bits : 
Yes, 104.12 is greater than 104.02.
Answer:
The minimum number of assignment statements needed is 5
Step-by-step explanation:
To write the algorithm, we apply the strategy of interchanging the values of variables in the assignment statements.
Assume "tmp" is the new variable, let assign tmp to w
The algorithm is:
Procedure exchange (w,x,y,z: integers)
tmp := w
w := x
x := y
y := z
z := tmp
return (w,x,y,z)
end
From the algorithm, it is obvious that there will be a minimum of 5 assignment statements needed.