Computers & Internet Logo

Related Topics:

Posted on Mar 24, 2011
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

Create a program that will the salary, no of hours work, the deduction, total deduction and net pay.

  • Anonymous Mar 21, 2014

    Subject: OBSCENE SALARIES ....... A MUST READ

    Think we are in the wrong business!!

    THE WORK ETHIC WE INHERITED GROWING UP HAS FALLEN PREY TO THE 'WELFARE'
    SYSTEM


    The Cato Institute released an updated 2013 study (original study in 1955)
    showing that welfare benefits pay more than a minimum wage job in 33 states
    and the District of Columbia . Even worse, welfare pays more than $15 per
    hour in 13 states. According to the study, welfare benefits have increased
    faster than minimum wage. It's now more profitable to sit at home than it is
    to earn an honest day's pay.

×

1 Answer

Anonymous

Level 3:

An expert who has achieved level 3 by getting 1000 points

Superstar:

An expert that got 20 achievements.

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

  • Computers & ... Master 32,281 Answers
  • Posted on Mar 24, 2011
Anonymous
Computers & ... Master
Level 3:

An expert who has achieved level 3 by getting 1000 points

Superstar:

An expert that got 20 achievements.

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Joined: Jun 29, 2007
Answers
32281
Questions
2
Helped
7912496
Points
102259

The easiest way to do this is to use Excel spreadsheet.
This is what you need to do.
Create a label at the top of each column as detailed.
Add a employee to each row under Name of employee
Then against each employee add the data and the formula in the relevant cell under each column.

The first column - Name of the employee
2nd column - salary rate per hour
3rd column - hours worked
4th column - gross pay (formula = salary rate X hours worked)
5th column - tax deduction
6th column - other deductions
7th column - total deductions (formula = tax deduction + other deduction)
8th column - net pay (formula = gross pay - tax - total deductions)

At the last row you can include a total for Gross salary paid, total Tax collected etc.

Once you have setup this spread sheet make a copy of it and save it as a template.
You can then copy this template for each new financial year so you do not have to create a new one each year, you only need to make minor changes for new employees, rates of pay etc.

Another way to make a salary program is to use Access Database. You need more skills to do this, but it can provide greater reporting capabilities.

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
4answers

Is it correct that fees paid for children is allowed as deduction in income tax for salary person?

That would depend on your country, province, or state. Please consult the appropriate authority.
0helpful
1answer

What does f(x) means?

This is a mathematical notation for a function of a variable x.
Let there be two quantities say the number of hours worked per week (x) and the salary you get paid (y).
The number of hours you work is the independant variable. The salary paid is the dependant variable.
For each amount of hours you work, your boss calculates the salary that is owed you at the end of the week. The method your boss uses to calculate your salaray is the function.
Symbolically, this can be represented as
Salary ($)=f(hours vorked) or
y=f(x)

For example: if the hourly rate is 8$/h and you work 35h then what is owed you is
35h*8$/h=280$
If you work more hours you will get more pay and if less hours, less pay
The rule is y=8*x
5helpful
3answers

Else if statement on turbo c, # hour worked: bonus: hour<40 & >=45 P500 hour <40 &>=35 P300 hour >20 & <=30 P150 display bonus,salary and...

Hi, First of all please check the conditions but as far as i understand the conditions the program would be like this-
#include<stdio.h> #include<conio.h> void main() { int salary,bonus,totalsalary,hours; printf("enter salary"); scanf("%d",&salary); printf("enter hours"); scanf("%d",&hours); if(hours<45 && hours>=40) { bonus=500; } else { if(hours<40 && hours>=35) { bonus=300; } else { if(hours<=30 && hours>20) { bonus=150; } else { bonus=0; } } } totalsalary=salary+bonus; printf("Salary=%d",salary); printf("Bonus=%d",bonus); printf("Total Salary=%d",totalsalary); getch(); }
But the conditiosn given by you are not seems to be correct.Just correct the conditions value if wrong and run the program Thanks! mannu_rakesh
4helpful
2answers

Free visual basic source code salary database sample

you solution is her



Building Websites with VB.NET and DotNetNuke 4/by Daniel N. Egan (Author), Steve Valenzuela (Author), Michael Washington (Author)
Description
DotNetNuke is an open-source Content Management System and web application framework. DotNetNuke has taken the Microsoft world by storm and now at version 4, its community has grown to over 200,000 users. This book covers virtually everything you need to know to get your DotNetNuke website up and running. Concisely written and with clear explanations, this book is covers installation, administration, deployment, site creation and all of the basic built in DotNetNuke modules. For developers, chapters on the core architecture, skinning and custom modules, including coverage of the DAL+, give you the skills to customize and extend your site. The book starts off by giving you a deep understanding of working with basic DotNetNuke sites, guiding you through the features and giving you the confidence to create and manage your site. After that, you will journey to the heart of DotNetNuke, and learn about its core architecture. Always concise, relevant and practical, you will find out what makes DotNetNuke tick, and from there, you will be ready to customize DotNetNuke. Developers will enjoy the detailed walkthrough of creating a new custom modules. Special emphasis is given to the DAL+, an extended feature set of the DotNetNuke Data Access Layer (DAL). You will see how to create custom modules with the DAL+, and invigorate your module development. Web designers will enjoy the material on skinning, helping them to create a new look for their site. You will learn about creating new skins, and packaging them up for easy deployment. You will master all of this as you leap into the development of a DotNetNuke 4 site. This book will give you the skills to create and manage DotNetNuke websites as quickly as possible. You will:
* Install and configure DotNetNuke
* Master the standard modules
* Understand the core architecture of DotNetNuke
* Explore the inner workings of DotNetNuke modules
* Extend DotNetNuke using the DAL and DAL+ to create powerful custom modules
* Create your own skin using a HTML Editor
* Find out about where and how to host and deploy your site
You can use this book to help you set up and administer a DotNetNuke portal, even if you have a limited knowledge of ASP.NET. You will learn how to setup and administer an example site, stepping through all the tasks to ease your learning. If you are a developer, this book will help you extend the DotNetNuke portal by first helping you understand how the core framework works and then show you how to create custom modules and skins. A rudimentary knowledge of VB.NET programming is assumed, but the emphasis is not on becoming a better VB.NET programmer but on taming DotNetNuke. This book has been written for both the beginner wanting to set up a website and also ASP.NET developers with a grasp of VB.NET who want a deeper understanding of how to work with DotNetNuke. To work with the DotNetNuke code, you will need access to Visual Web Developer Express or Visual Studio .NET 2005. No prior knowledge of DotNetNuke is assumed.

download link:
http://w14.easy-share.com/1701584071.html
or:
http://dep
3helpful
2answers

How to create and solve the payroll in tally

How to Create in Payroll in Tally 9? Please Explain neatly
1helpful
1answer

What s the formulas for creating salary slip

da=basic*(Da%/100)
hra=basic*(Hra%/100)
apply the same for remaining additions and deductions
net=(basic+da+hra+ca+ea)-(pf+pt)
3helpful
3answers

Payroll system in DBMS. I don't know what data is to be taken.

Firstly you need to determine/state whether you are using a database application, such as Access, MtSQL or MS SQL and programming them to do create this application, or are you using a programming development tool such as Visual Studio, ASP.NET, PHP or the like, as the solution and guidance will be different for each.
In terms of the data design, you should store the data necessary to identify each employee uniquely and each data point per employee needed to calculate their payroll. You should then store the generic (applys to all employees) such as tax rates, in separate tables and call on it to calculate wages and other paystub data.
For instance, the employee first and last names and tax ID should be a sufficient unique identifier. Create a table for just employees, their names, tax ID, start date, schedule, pay rate, number of deductions, direct bank payment data, etc., and whatever else you decide you need for each employee. You can calculate their wages by multiplying their rate by their schedule and applying the appropriate tax rate and medical/witholding deductions as you go, so calculated data does not need to be stored and consume database space. 
You'll likely need a separate table for common data such as tax rates, one for deductions/witholdings, one for holidays, one for vacation accrual rates, one for medical rates, etc. This data if common to employees does not need to be stored per individual, as that would cause redundant replication of data. If the employees are on an hourly rate, rather than a set salary/wage, then you'll need a table of worked hours per employee, akin to their timesheet data. If you use a timesheet/timecard, the entering and storing only the totals and keeping the physical timesheet for backup records should suffice.
Once you design and populate your database as suggested above, then it's a relatively-simple task of calculating the computed paystub data and storing the salient resulting datapoints for the record.
Consider a reporting application, such as Crystal Reports, for your printing needs, as its far easier to configure Crystal or similar product to format reports, paystubs, checks, etc., than coding these from scratch.
Hope this helps.
8helpful
2answers

Can I get the asswer for the below questions

A book shop maintains the inventory of books that are being sold at the shop. The list has details like author, title, price, publisher and stock position. Whenever a customer wants a book, the sales person inputs the title and author and the system searches the list and displays a suitable message if it is not available. If it is available, the system displays the book details and requests for the number of copies required. If the copies are available, the total cost of the copies requested is displayed, otherwise the message ‘copies not in stock’ is displayed.
Design a system using a class called BOOKS with suitable member functions and constructors. Use new operator in constructors to allocate required memory space.
Not finding what you are looking for?

181 views

Ask a Question

Usually answered in minutes!

Top Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

Brad Brown

Level 3 Expert

19187 Answers

Cindy Wells

Level 3 Expert

6688 Answers

Are you a Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...