1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Sever21 [200]
3 years ago
15

Which of the following are included in the employer's payroll taxes?

Business
1 answer:
anyanavicka [17]3 years ago
5 0

Answer:

(b) all are included in employer taxes

Explanation:

The following employer payroll taxes are involved

1. Social security tax with a maximum contribution of 6.2%

2. Medicare taxes with a maximum wages contribution of 1.45%

3. Federal unemployment taxes (FUTA)

4. State unemployment taxes (SUTA)

These four taxes are contributed by the employer for payroll taxes

Hence, the correct option is b.

You might be interested in
A bond has a par value of $1,000, a current yield of 6. 90 percent, and semiannual coupon payments. the bond is quoted at 101.17
poizon [28]

If the bond's par value is $1000,current yield be 6.90% and the bond is quoted at 101.17 then the each coupon payment is $34.9.

Given the bond's par value is $1000,current yield be 6.90% and the bond is quoted at 101.17.

We are required to find the amount of each coupon payment.

Bond value=$1000

Current yield=6.90%=0.0690

Bond quoted=101.17

Payment method=Semi annual =2 payments

Computation of annual coupon amount:

Current yield=Annual coupon/(Bond value*Bond quoted)

0.0690=Annual coupon/(1000*101.17%)

0.0690=Annual coupon/1011.7

Annual coupon=1011.7*0.0690

Annual coupon=$69.8073

Computation of each payment:

Each payment=Annual coupon /2 payment

Each payment=69.8073/2

Each payment=34.90365

Hence the amount of each payment of bond having par value of $1000 is $34.9.

Learn more about bond at brainly.com/question/25965295

#SPJ4

6 0
2 years ago
organizations use estimated overhead rates, instead of actual cost, to apply overhead cost to work in porcess because that metho
Evgen [1.6K]

Answer: The management requires the overhead rates before the end of the year

Explanation:

The overhead rates are used because the management requires the overhead rates before the end of the year and the predetermined overhead rates are helpful in keeping records very well. The overhead rates are more accurate in results also.

6 0
3 years ago
Markland First National Bank of Rolla utilizes Kanban techniques in its check processing facility. The fol-lowing information is
Alisiya [41]

Answer:

the current daily demand of the check processing facility is 8000 units, and a 16 containers is required.

Explanation:

Solution

Given that,

(A) The calculation of delay demand is as follows:

K = (<u>+_</u>) (<u>1 +)</u> C

K = is the number of containers

d = the average delay demand

w = the waiting time per average per unit

p = the average processing time per unit

C = Container quantity

α = safe guard policy variable

Now,

The average processing  time = 2/24 * 60 =0.0167

The average waiting time is = 2/24 =0.083

The required number of container  = 20 = (0.083 + 0.0167 ) (1 + 0.25) /50

which is

20 * 50 = (0.1) (1.25)

Thus,

1000 / 0.125 = 8000

Now,

The average daily demand is 8000

The next step is to find out how many containers would be needed.

Now,

If there is no waste, it is = 0

The required  number of containers will be =

K = 8000 ( 0.083 + 0.0167) ( 1 + 0 )/ 50

= 8000/5= 16 Containers

7 0
3 years ago
This program will store roster and rating information for a soccer team. coaches rate players during tryouts to ensure a balance
Vedmedyk [2.9K]

Answer:

Explanation:

#include <iostream>

#include <vector>

using namespace std;

int main() {

   vector<int> jerseyNumber;

   vector<int> rating;

   int temp;

   for (int i = 1; i <= 5; i++) {

       cout << "Enter player " << i

            << "'s jersey number: ";

       cin >> temp;

       jerseyNumber.push_back(temp);

       cout << "Enter player " << i

            << "'s rating: ";

       cin >> temp;

       rating.push_back(temp);

       cout << endl;

   }

   cout << "ROSTER" << endl;

   for (int i = 0; i < 5; i++)

       cout << "Player " << i + 1 << " -- "

            << "Jersey number: " << jerseyNumber.at(i)

            << ", Rating: " << rating.at(i) << endl;

   char option;

   '

   while (true) {

       cout << "MENU" << endl;

       cout << "a - Add player" << endl;

       cout << "d - Remove player" << endl;

       cout << "u - Update player rating" << endl;

       cout << "r - Output players above a rating"

            << endl;

       cout << "o - Output roster" << endl;

       cout << "q - Quit" << endl << endl;

       cout << "Choose an option: ";

       cin >> option;

       switch (option) {

           case 'a':

           case 'A':

               cout << "Enter a new player's"

                    << "jersey number: ";

               cin >> temp;

               jerseyNumber.push_back(temp);

               cout << "Enter the player's rating: ";

               cin >> temp;

               rating.push_back(temp);

               break;

           case 'd':

           case 'D':

               cout << "Enter a jersey number: ";

               cin >> temp;

               int i;

               for (i = 0; i < jerseyNumber.size();

                    i++) {

                   if (jerseyNumber.at(i) == temp) {

                       jerseyNumber.erase(

                               jerseyNumber.begin() + i);

                       rating.erase(rating.begin() + i);

                       break;

                   }

               }

               break;

           case 'u':

           case 'U':

               cout << "Enter a jersey number: ";

               cin >> temp;

               for (int i = 0; i < jerseyNumber.size();

                    i++) {

                   if (jerseyNumber.at(i) == temp) {

                       cout << "Enter a new rating "

                            << "for player: ";

                       cin >> temp;

                       rating.at(i) = temp;

                       break;

                   }

               }

               break;

           case 'r':

           case 'R':

               cout << "Enter a rating: ";

               cin >> temp;

               cout << "\nABOVE " << temp << endl;

               for (int i = 0; i < jerseyNumber.size();

                    i++)

                   if (rating.at(i) > temp)

                       cout << "Player " << i + 1

                            << " -- "

                            << "Jersey number: "

                            << jerseyNumber.at(i)

                            << ", Rating: "

                            << rating.at(i) << endl;

               break;

           case 'o':

           case 'O':

               cout << "ROSTER" << endl;

               for (int i = 0; i < jerseyNumber.size();

                    i++)

                   cout << "Player " << i + 1 << " -- "

                        << "Jersey number: "

                        << jerseyNumber.at(i) << ", Rating: "

                        << rating.at(i) << endl;

               break;

           case 'q':

               return 0;

           default:

               cout << "Invalid menu option."

                    << " Try again." << endl;

       }

   }

}

4 0
3 years ago
Santiago company incurs annual fixed costs of $66,000. variable costs for santiago's product are $34 per unit, and the sales pri
babunello [35]

Answer: 6250

Explanation:

From the question, we are informed that Santiago company incurs annual fixed costs of $66,000. variable costs for santiago's product are $34 per unit, and the sales price is $50 per unit. santiago desires to earn an annual profit of $34,000.

The contribution margin ratio approach to determine the sales volume in dollars and units required to earn the desired profit for thus:

Contribution margin ratio = (Sales price - Variable cost)/Sales price

= (50-34)/50

= 16/50

= 0.32

Sales = (66,000 + 34,000)/0.32

= 100,000/0.32

= 312,500

Sales volume in units will be sales divided by price. This will be:

= 312,500/50

= 6250

6 0
3 years ago
Other questions:
  • A 4-year project has an annual operating cash flow of $54,000. At the beginning of the project, $4,500 in net working capital wa
    5·1 answer
  • It's helpful to write a company's mission statement in what way? A. By comparing the company's products to its competitors B. By
    13·1 answer
  • Absent government regulations to guard against​ fraud, why might top managers deceive investors about the true financial condi
    12·2 answers
  • Find the APR, or stated rate, in each of the following cases (Do not round intermediate calculations and round your final answer
    12·1 answer
  • You have chosen to take a trip during spring break. If you had not gone, you would either have worked at a temporary job or stud
    11·1 answer
  • The operations of Winston Corporation are divided into the Blink Division and the Blur Division. Projections for the next year a
    15·1 answer
  • On June 30, 2009, Apricot Co. paid $5,000 cash for management services to be performed over a two-year period. Apricot follows a
    6·1 answer
  • Markel how your day it good
    8·1 answer
  • Im unable to add more comments come here to chat now
    14·2 answers
  • The systematic examination of the relationships among selling prices, volume of sales and production, costs, and profits is term
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!