Answer:
$5,750
Explanation:
Calculation to determine How much of the 2020 dividend was distributed to preferred shareholders
Dividend distributed to preferred shareholders=11500 shares *$10 par non-cumulative preferred stock*5%
Dividend distributed to preferred shareholders=$5,750
Therefore Dividend distributed to preferred shareholders is $5,750
Answer:
separates costs into fixed and variable component
can assist with management decision making
Explanation:
The contribution margin may be defined as when we deduct the expenses of the variable from sales. Where contribution margin shows the organization revenue is contributing to net income and fixed cost.
The statement of contribution margin income tells of the earnings at various stages of operations.
This report of income is not used for external reporting purposes but rather for internal decision making by the management.
Therefore according to the above description, the last two statements are correct.
Answer:
58,333.33
Explanation:
Opportunity cost is the value of the next best alternative. It is the forgone benefits as a result of choosing one option over the others. Opportunity cost occurs due to the scarcity of resources that forces people to make choices. The value of the sacrificed option is the opportunity cost.
If the cost of constructing a new home is 120,000, the opportunity cost of one house equals the next best alternative of spending the 120,000. With a budget of 7 billion, the opportunity cost of spending 7 billion will be 7 billion divided by 120,000.
=7,000,000,000/120,000
=58,333.33
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:
Answer:
3,000 units
Explanation:
Calculation for How many units are in ending work in process inventory
Using this formula
Ending work in process units =Beginning work in process units + Units started into production - Transferred to the second processing department units
Let plug in the formula
Ending work in process units= 2,300 units + 8,700 units - 8,000 units
Ending work in process units= 3,000 units
Therefore 3,000 units are in the ending work in process inventory in the first processing department at the end of the month.