Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

complete a Java program with the provided data files. The program calculates the amount of tax withheld from an employees weekly salary, the tax deduction

complete a Java program with the provided data files. The program calculates the amount of tax withheld from an employees weekly salary, the tax deduction to which the employee is entitled for each dependent, and the employees take-home pay. The program output includes state tax withheld, federal tax withheld, dependent tax deductions, salary, and take-home pay.

Instructions

  1. Ensure the file namedPayroll.javais open.
  2. Variables have been declared and initialized for you as needed, the output statements have been written and the input object has been declared and initialized for you. Read the code carefully before you proceed to the next step.
  3. Write the Java code needed to perform the following:
  • Calculate state withholding tax (stateTax) at 6.5 percent
  • Calculate federal withholding tax (federalTax) at 28.0 percent.
  • Calculate dependent deductions (dependentDeduction) at 2.5 percent of the employees salary for each dependent.

o

    • Calculate total withholding (totalWithholding) as stateTax + federalTax + dependentDeduction.
    • Calculate take-home pay (takeHomePay) as salary minus total withholding.
  • Compile and execute your program by clicking theRunbutton. You should get the following output:

o State Tax: $81.25

o Federal Tax: $350.00000000000006

o Dependents: $62.5

o Salary: $1250

Take-Home Pay: $756.25

  • In this program, the variables salary and numDependents are initialized with the values 1250.00 and 2. To make this program more flexible, modify it to accept interactive input for salary and numDependents. when running the code Output must read Dependents, state tax, federal tax, salary, take home pay





Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Mobile Communications

Authors: Jochen Schiller

2nd edition

978-0321123817, 321123816, 978-8131724262

More Books

Students also viewed these Programming questions