Answer:
Net financing cashflows are $ 35,000.
Explanation:
A company generates cashflow from three activities that are cash from operations , cash from financing activities and cash from investing activities. The company net cash flow is total of these above specified. So we can determine net financing cashflows from the equation given below.
<em>total change in cash = net operating cash flows + net investing cash flows + net financing cash flows</em>
net financing cash flows = $ 35,000
<em />
<em />
Which of the following is classified as an equitable remedy?
Answer: B. Reformation
Answer:
Predetermined manufacturing overhead rate= $5.275 per machine-hour
Explanation:
Giving the following information:
Pinnacle Corp. budgeted $259,470 of overhead cost for the current year.
Pinnacle's plantwide allocation base, machine hours, was budgeted at 49,190 hours.
To calculate the predetermined manufacturing overhead rate we need to use the following formula:
Predetermined manufacturing overhead rate= total estimated overhead costs for the period/ total amount of allocation base
Predetermined manufacturing overhead rate= 259,470/49,190
Predetermined manufacturing overhead rate= $5.275 per machine-hour
/* Works only if a >= 0 and b >= 0 */ int pow(int a, int b) { if (b == 0) return 1; int answer = a; int increment = a; int i, j; for(i = 1; i < b; i++) { for(j = 1; j < a; j++) { answer += increment; } increment = answer; } return answer; } /* driver program to test above function */ int main() { printf("\n %d", pow(5, 3)); getchar(); return 0; }