Answer:
Total cost= $650,857
Explanation:
Giving the following information:
At an activity level of 6,900 units in a month, Zeus Corporation's total variable maintenance and repair cost is $408,756, and its total fixed maintenance and repair cost is $230,253.
<u>We need to calculate the total cost of 7,100 units. Because it is between the relevant range, fixed costs will remain the same. We need to determine the unitary variable cost.</u>
Unitary variable cost= total variable cost/ unit
Unitary variable cost= 408,756/6,900= $59.24
Total cost= 59.24*7,100 + 230,253= $650,857
A team is linked to the organization's hierarchy,
with some shift of power to team; the leader has limited managerial power;
decision-making is consultative, democratic, or by consensus
Answer:
Jessica's for AGI deduction for these costs is:
b. $14.00.
Explanation:
The aggregate gross income (AGI) can be defined as the total amount of income that an individual earns and is used in calculating the amount of income tax that an individual is liable to pay. The AGI can be expressed as follows;
AGI=T×N×W
where;
AGI=aggregate gross income
T=toll amount per way
N=number of times she reported
W=number of way
In our case;
AGI=unknown, to be determined
T=$1.75
N=4
W=2
Replacing;
AGI=(1.75×4×2)=$14.00
Jessica's for AGI deduction for these costs is:
b. $14.00.
Answer:
For such a report , the sql query required would be:
SELECT emp_id, curr_salary, curr_salary*1.03 AS inc_salary FROM Employee;
Explanation:
For such a report , the sql query required would be:
SELECT emp_id, curr_salary, curr_salary*1.03 AS inc_salary FROM Employee;
In the above sql query employee id is emp_id , curr_salary is the current salary column. "curr_salary*1.03" is been made because an increment of 3% means salary + salary*3% , that is , salary*1.03.