Answer:
(C) 
Step-by-step explanation:
The correct answer is D: $94,165.
First, let's find the amount of the down payment. It is 30% of the total.
310,000 x 0.30 = 93,000
Now, we just need to add on all the additional costs.
93000 + 100 + 250 +190 + 275 +70 + 280 = 94165
Answer:
It would take 2,000 minutes
Step-by-step explanation:
2,000 times 5 is 10,000
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.