Indentation and alignment are very noticeable on a printed page, so you will probably want to set the tab stops in your document precisely how you want them.
The answer to this question is b that's the answer
Yield management pricing.
A is the best and safest answer. you don't want to sound like you are trying to control them or tell them what they should or should not do. <span />
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.