Preview

mysql

Satisfactory Essays
Open Document
Open Document
652 Words
Grammar
Grammar
Plagiarism
Plagiarism
Writing
Writing
Score
Score
mysql
Microsoft Excel
Practical Examination
Thursday 23rd November 2012 11.00 am – 12.30 pm
Duration 1½ Hours
Instructions for Candidates
Instructions for Exam
Read the paper fully before you start the exam
Attempt all the questions
Save the files to the desktop in a folder called MySpreadsheet[yourname]
At the end of the exam return this examination paper to the supervisor
Make sure your name is on all of the printouts
Name
Daly Electrical Ltd is a small Electrical Installation company that mainly service water treatment plants nationwide. The have a group of employees that travel the country that include Electricians and Apprentices. You are required to set up a spreadsheet that will keep track of the hours worked and the net pay of these employees.
All monetary should be displayed in currency with 2 decimal places.

Figure 1
Set up the data and input the data as shown in Figure 1, with cell alignments as shown and appropriate column widths.
Use an IF function to calculate the Hourly Rate of each employee based on the following information:
If employee is an Electrician Hourly Rate €21
If employee is an Apprentice Hourly Rate €15
Calculate the Gross Pay by multiplying the Hourly Rate by the Hours Worked and copy this formula down all cells where it is needed.
Using an absolute cell address for the tax calculate the total tax that has to be deducted from each employee as Gross Pay multiplied by 21% copy this formula down all cells where it is needed.
Calculate the Net Pay as Net Pay minus Tax copy this formula down all cells where it is needed.
Insert your name in cell E2.
Save the spreadsheet to the desktop in the folder that you have created and name it Task1.
Print the spreadsheet with all data visible.
Insert a new column between columns D and E and call it Nights Away.
Input the new data that is shown in red print in Figure 2 below do not enter the data in red leave it as default colour.
Figure 2

Use the IF function to calculate

You May Also Find These Documents Helpful

  • Satisfactory Essays

    In the following example, the second line of the table specifies that tax due on a salary of $2,000.00 is $225.00 plus 16% of excess salary over $1,500.00 (that is, 16% of $500.00). Therefore, the total tax is $225.00 + $80.00, or $305.00.…

    • 321 Words
    • 2 Pages
    Satisfactory Essays
  • Powerful Essays

    Write " Thank you, please type 'X' to exit or 'Y' to enter another salary amount "…

    • 671 Words
    • 3 Pages
    Powerful Essays
  • Satisfactory Essays

    It 210 Appendix G

    • 540 Words
    • 3 Pages

    You are an accountant setting up a payroll system for a small firm. Each line of the table in Appendix G indicates an employee’s salary range and corresponding base tax amount and tax percentage. Given a salary amount, the tax is calculated by adding the base tax for that salary range and the product of percentage of excess and the amount of salary over the minimum salary for that range.…

    • 540 Words
    • 3 Pages
    Satisfactory Essays
  • Good Essays

    Week 1 Lab_ CIS_115

    • 439 Words
    • 2 Pages

    TCO 1: Given a simple problem, design and desk-check a solution that is expressed in terms of pseudocode, flowchart, and/or input-process-output (IPO) diagrams.…

    • 439 Words
    • 2 Pages
    Good Essays
  • Satisfactory Essays

    Name: Amber Smith CAUTION: See "round" rules in Excel Instructions before calculating OT for slaried employees. Enter the appropriate numbers/formulas in the shaded (gray) cells. An asterisk (*) will appear to the right of an incorrect answer. For a breakdown of the solution by chapter, see the worksheet tabs labeled CPP 2 through 6 representing the solutions for chapters 2-6. Continuing Payroll Problem-B…

    • 736 Words
    • 3 Pages
    Satisfactory Essays
  • Good Essays

    Stoichiometry Lab

    • 551 Words
    • 3 Pages

    Before beginning, set up a data table similar to the Data Table: Experiment Results in the Lab…

    • 551 Words
    • 3 Pages
    Good Essays
  • Powerful Essays

    Taxation and Home Tab

    • 1215 Words
    • 5 Pages

    | In cell C5, type Cafe after Giorno’s. In cell J2, type Tax Rebate and in cell K2, enter the value 3000 as the rebate amount. In cell K4, type After Rebate.…

    • 1215 Words
    • 5 Pages
    Powerful Essays
  • Satisfactory Essays

    Complete the table below. The first row has been filled in for you as an example.…

    • 867 Words
    • 4 Pages
    Satisfactory Essays
  • Good Essays

    This form is part of your claim for payment. The information asked for on this form is needed to decide whether the Australian Government Department of Human Services can grant your claim. Under section 192 of the Social Security (Administration) Act 1999, we have the authority to collect this information. Under section 196 of the Social Security (Administration) Act 1999, you must complete and return this form within 14 days.…

    • 881 Words
    • 4 Pages
    Good Essays
  • Powerful Essays

    Ss2 Assesment

    • 1737 Words
    • 7 Pages

    • The first thing you need to do is save a copy of this document, either onto your computer or a disk…

    • 1737 Words
    • 7 Pages
    Powerful Essays
  • Powerful Essays

    SS2 Assessment

    • 2272 Words
    • 11 Pages

    1.1 Identify what numerical and other information is needed in the spreadsheet and how it should be structured…

    • 2272 Words
    • 11 Pages
    Powerful Essays
  • Good Essays

    BIS 155 Final

    • 2158 Words
    • 9 Pages

    Since this is a weekly payroll for construction workers, the computation for Excel will be on a weekly basis. Here are the insights as to how to create the Payroll…

    • 2158 Words
    • 9 Pages
    Good Essays
  • Satisfactory Essays

    financialAnnual Financials for Nike Inc. Cl B View Ratios Fiscal year is June-May. All values USD millions.…

    • 1197 Words
    • 5 Pages
    Satisfactory Essays
  • Satisfactory Essays

    My Sql

    • 1999 Words
    • 8 Pages

    This query will create a table create table furniture ( no int(6) NOT NULL PRIMARY KEY, itemname varchar(20) default NULL, type varchar(10) default NULL, dateofstock date default NULL, price decimal(6,0), discount int(2) ); Query OK, 0 rows affected (0.22 sec) This query will create a table create table arrival ( no int(6) NOT NULL PRIMARY KEY, itemname varchar(20) default NULL, type varchar(20) default NULL, dateofstock date default NULL, price int(6) default NULL, discount int(2) ); Query OK, 0 rows affected (0.22 sec) mysql> desc furniture; +-------------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------------+--------------+------+-----+---------+-------+ | no | int(6) | NO | PRI | NULL | | | itemname | varchar(20) | YES | | NULL | | | type | varchar(10) | YES | | NULL | | | dateofstock | date | YES | | NULL | | | price | decimal(6,0) | YES | | NULL | | | discount | int(2) | YES | | NULL | | +-------------+--------------+------+-----+---------+-------+ 6 rows in set (0.00 sec) inserting values into the table furniture and arrival insert into furniture values(1,"white lotus","double Bed","2002/02/23",30000,25); insert into furniture values(2,"Pink Feather","Baby cot","2002/01/20",7000,20); insert into furniture values(3,"Dolphine","Baby cot","2002/02/19",9500,20); insert into furniture values(4,"Decent","Office Table","2002/01/01",25000,30); insert into furniture values(5,"Comfort Zone","Double Bed","2002/01/12",25000,25); insert into furniture values(6,"Donald","Baby cot","2002/01/12",6500,15); insert into furniture values(7,"Royal Finish","office Table","2002/10/20",18000,25); insert into furniture values(8,"Royal Tiger","Sofa","2002/03/22",31000,25); insert into furniture…

    • 1999 Words
    • 8 Pages
    Satisfactory Essays
  • Satisfactory Essays

    Greenville Hospital is a modern facility that prides itself on having accurate patient information and well integrated accounting systems. The hospital is always looking for new ways to use computer systems so that its medical staff can spend more time with patients. The hospital has an up-to-date hardware and software infrastructure using wire-based systems.…

    • 419 Words
    • 2 Pages
    Satisfactory Essays

Related Topics