Print a list of all people in department 15 who either are salaried and make more than or are part time or full time and make more than 25 per hour.

Slides:



Advertisements
Similar presentations

Advertisements

Objective 17 Word Problems: Evaluate algebraic expressions ©2002 by R. Villar All Rights Reserved.
1 Welcome to Jon Snyder and Priscilla Miccio. 2 Purchase Orders The Purchasing Department receives the orders from either the HR department or Marketing.
 Why allocate costs to departments?  Three methods of allocation.  Cost allocation issues. Overview 4 & 12 Service Department Costing: An Activity Approach.
Certification of Salary Distribution Reports What is a Salary Distribution report?
Intro to Programming Part of Chapter 5. Algorithms An algorithm is an ordered set of executable steps that defines a terminating process. An algorithm.
CENTURY 21 ACCOUNTING © Thomson/South-Western LESSON 3-1 Completing Payroll Records for Employee Earnings and Deductions.
Find the set of integers that is greater than 2 and less than 7 Find the set of integers that is greater than 2 or less than 7 How do the use of the words.
Budget Plan for Payroll Payroll based on assumptions Building is being rented All employees have degrees Each dept. has 12 employees Salaries based on.
PAYROLL PROCESSING. PAYROLL In a company, payroll is the sum of all financial records of salaries, wages, bonuses, and deductions.
Working Effectively in Accounting and Finance
HOMEWORK REVIEW. SOLVE ABSOLUTE VALUE INEQUALITIES 5.6.
Unit 2  Topic:  Company organization chart  Company objective.
Federal 1512 Quarterly Reporting Calculating the Full Time Equivalents (FTE) of Federally Funded Jobs.
IF statements - selection Please use speaker notes for additional information!
Relational Algebra Sample Questions.
Company Program. Organizational Structures: 3 choices.
MUST BE ACTIVE ON THE PAYROLL FOR PAY PERIOD 11, 2012 TO HAVE AN AMOUNT PRINTED FULL TIME EMPLOYEES WITH ONE YEAR OF SERVICE ON OR BEFORE JULY 1, 2011.
Java Project 3 In Class Practice. IF Statements Create a simple program that allows the user to enter a test score as an integer. If the test score is.
Word problems that lead to inequalities. Word Problem Solving Strategies Read through the entire problem. Highlight the important information and key.
BIS 219 Week 1 DQ 2 Choose one of the organizational departments of a business: accounting, finance, HR, or otherwise. What is the role of this department?
BIS 320 Week 1 DQ 1 Think about functional areas within an organization, such as payroll, human resources, and sales. How are software and hardware used.
Objective #5: Solve Compound Inequalities
Department of Computer Science
Comparison Operators Relational Operators.
Displaying data from 2 tables
Chapter 5: Aggregate Functions and Grouping of Data
Chapter 5: Control Structure
© 2015 Cengage Learning. All Rights Reserved.
Introduction to the Array
Generalization.
Job Title:. Accounting Manager / Financial Reporting
Chapter 20 THE PAYROLL.
Job Title: Bus Operator
Job Title:. Accounting Manager / Financial Reporting
Job Title: Communications Supervisor
Job Title: Assistant Development Services Director
Solve: 1. 4<
Job Title: Assistant Development Services Director
Lab 5: Subqueries CISB224 02A, 02B Semester I, 2009/2010
Interface..
ANALYZING A PAYROLL TIME CARD
Lists in Python Outputting lists.
Inequalities Friday, 22 February 2019.
Why do we need a math review?
The + can mean concatenate or add
If category is A you want to add 1 to CTA, if category is B you want to add 1 to CTB else you want to add 1 to CTOTHER.
In Class Exercises Phil Tayco Slide version 1.1 San Jose City College
Warmup Open Loop System Closed Loop System
6.3 Compound Inequalities
General Ledger vs ABC … Chart of Account View Activity Based View
Notes Over 1.7 Solving Inequalities
Notes Over 1.7 Solving Inequalities
*** Series PRS Version 1, ***
If the person is married and has more than 5 dependents MOVE MSG-1 TO MSG-PR, if the person is married and does not have more than 5 dependents MOVE MSG-2.
Learning Plan 5 Arrays.
CS Problem Solving and Object Oriented Programming Spring 2019
Print or display a list of all records where the state is equal to either MA or RI. EndLOOP problems. The loop is the only thing that will be different.
Using Access..
If the person is married and has more than 5 dependents MOVE MSG-1 TO MSG-PR, if the person is married and does not have more than 5 dependents MOVE MSG-2.
Problem #2: Print or display a list of all records where the year of birth is greater than 1980 and the marital status is married.
Problem #2: Print or display a list of all records where the year of birth is greater than 1980 and the marital status is married.
Inequalities x > a Means x is greater than a
Print or display a list of all records where the state is equal to either MA or RI.
If category is A you want to add 1 to CTA, if category is B you want to add 1 to CTB else you want to add 1 to CTOTHER.
JavaScript IF assignment two
ANALYZING A PAYROLL TIME CARD
Presentation transcript:

Main part of program - we will do a different loop to solve different problems.

Print a list of all people in department 15 who either are salaried and make more than 60000 or are part time or full time and make more than 25 per hour.

Print or display a list of all people and their dept group Print or display a list of all people and their dept group. If the dept is greater than 16 they are in SALES, if the dept is between 10 and 15 inclusive they are in FINANCE, if the dept is between 7 and 9 inclusive they are in PAYROLL, otherwise they are in BUSINESS.

If the person is married and has more than 5 dependents MOVE MSG-1 TO MSG-PR, if the person is married and does not have more than 5 dependents MOVE MSG-2 TO MSG-PR, if the person is not married with more than 4 dependents MOVE MSG-3 TO MSG-PR, if the person is not married and does not have more than 4 dependents MOVE MSG-4 TO MSG-PR.