•date you are preparing deposit
•defaulted to current date
•reference field should be left blank
•Code for location of the office where you send your deposit slips and deposit statements
Answer:
A, C, D according to your answers. Mine was in a different order, so remember to check the actual statement.
Explanation:
Got it right on edge.
Answer:
L-Laughing m-my a-a*s o-off
Explanation:
Answer and explanation:
1. It asks for the total expenses for the month of March. So, let's add all of the March expenses up.
1,600 + 2,100 + 850 + 480 + 2,800 = $7,830 (which is the answer)
2. It asks what the highest expense for wages are. That would be $5,080. Out of all of the times that the wages have been paid, in April, it was the highest, at $5,080. So, $5,080 is the answer.
3. It asks how many items cost less than $1,000 in April. The only thing that cost less than $1,000 in April was the water because it only cost $370. So, the answer would be 1.
Hope this helps!
Answer:
Explanation:
the answer is also in the question. The loop is used to control the number of program execution. So in order not to run forever, the loop should be included inside the loop brackets. Then you can restructure the code as done below.
var numItems = promptNum("How many items?");
var total = 0;
var itemPrice=0;
while (numItems > 0){
itemPrice = promptNum("Enter next item price");
total = total + itemPrice;
numItems = numItems - 1;
}
console.log("The total is" + total);
The value to be displayed will be the total of the item prices inputted.