Answer:
The cash received by ABC company from the issuing of stock is $15,000.
Explanation:
It is given that ABC company issued 3000 shares of stock for $5 per share.
The cash received by ABC company from the issuing 3000 shares of stock is


It is also given that ABC company issued 5000 shares for land valued at $10,000. It means ABC company received land instead of cash. So, total cash received by ABC company from the issuing of stock is $15000
Therefore, the cash received by ABC company from the issuing of stock is $15,000.
Paying a graphic designer to create a logo.
Answer: Reduce output
Explanation: Profit = Total Revenue – Total Costs
Therefore, profit maximization occurs therefore, profit maximization occurs at the most significant gap or the biggest difference between the total revenue and the total cost.
TC = AC×Q = $4×500 = $2,000
Theoretically, profit maximization occurs where MR = MC
From the forgoing, producing an extra unit will increase the cost of the company thereby reducing profit.
The company should reduced output to around 499 units or less
Answer:
True
Explanation:
Critical-Chain
This was introduced or originated by Eli Goldratt in 1997. Its aim is to challenges conventional project management approaches and absolute dependence on TOC principles. The idea of what to change or eliminated is the largely rooted behaviors that is common with the traditional project management practices. It is very multitasking anf it is the longest string of reliance that occur on the project.
Critical- Chain Approach
This approach simply covers project network as it ca be limited by both resource and technical reliance/dependencies. each type of limitations can create task reliance.
The Summary of Critical Chain Approach
1.) use Aggressive but Possible Times (ABPT) for task durations
2.) identify the critical chain by accounting for resource dependencies
3.) use buffer management to track project progress etc.
Answer:
The query may still be specified in SQL by using a nested query as follows (not all
implementations may support this type of query):
SELECT DNAME, COUNT (*)
FROM DEPARTMENT, EMPLOYEE
WHERE DNUMBER=DNO AND SEX='M' AND DNO IN ( SELECT DNO
FROM EMPLOYEE
GROUP BY DNO
HAVING AVG (SALARY) > 30000 )
GROUP BY DNAME;
Explanation: