Answer:
C. $65,800
Explanation:
Fixed csot: those which do not change for a relevant range with the production output. They aer constant.
Factory insurance 21,000
Factory insurance 13,000
Factory manager's salary 10,800
Janitor's salary 5,000
Property taxes: <u> 16,000 </u>
Total Fixed Cost: 65,800
The direct materials and direct labor are variable cost as they drop to zero if no unit is produced.
Same goes with packaging cost, if no unit is produced then, no packagin is needed.
Answer:
Explanation:
How to add a great answer
Add your answer
Question
Cash flows during the first year of operations for the Harman-Kardon Consulting Company were as follows: Cash collected from customers, $325,000; Cash paid for rent, $37,000; Cash paid to employees for services rendered during the year, $117,000; Cash paid for utilities, $47,000. In addition, you determine that customers owed the company $57,000 at the end of the year and no bad debts were anticipated. Also, the company owed the gas and electric company $1,700 at year-end, and the rent payment was for a two-year period. Calculate accrual net income for the year.
Answer:
for (i = 0; datasamples[i] < NUM_POINTS ; ++i) {
if(datasamples[i] < minVal) {
datasamples[i] = datasamples[i] * 2;
}
}
Explanation:
In this particular problem, we are trying to look at each value in the datasamples array, and double it. This calls for the use of an index variable.
The index variable will keep track of the position within the array as we move from left to right. Starting on the left, at index 0, we will move right until we are at the end of the array.
++i takes care of incrementing the index variable each time the loop runs. This is what moves through the array.
The termination condition checks whether if we have iterates all values in the array. Once you've gone past all the values in the array the index variable is pointing all the way at the end.
As soon as the termination condition is false the loop will stop executing. So we will want to run your code while i (the index variable) is less than the size of the array (datasamples.length).
Once you've figured out the for loop bounds, simply check your conditional with an if-then statement before updating the values: