Company ABC pays extra money for their employees, if the employee has sold more than 10 items within a week. Write a complete java code (ABC.java) program which prompts the user to enter the employee ID and number of items sold within that week. When the user enters “-1” to quit from the system, the program should display the total number of employees who sold more than 10 items for that week.

Code
import java.io.*;
import java.util.*;
public class ABC
{
public static void main(String[] args) {
int count = 0;
int employeeId = -1;
int numberOfItems = -1;
Scanner in = new Scanner(System.in);
do
{
System.out.println("\nPlease enter the employee id and
number of items sold");
employeeId = in.nextInt();
numberOfItems = in.nextInt();
if(numberOfItems > 10)
count = count+1;
System.out.println("Enter -1 to quit otherwise press
1");
}while(in.nextInt()!=-1);
System.out.println("Number of employees who sold more
than 10 items = "+ count);
}
}
Test Output

Company ABC pays extra money for their employees, if the employee has sold more than 10...
A company pays its employees as managers (who receive a fixed weekly salary), hourly workers (who receive a fixed hourly wage for up to the first 40 hours they work and “time-and-a-half,” i.e. 1.5 times their hourly wage, for overtime hours worked), commission workers (who receive $250 plus 5.7% of their gross weekly sales), or pieceworkers (who receive a fixed amount of money per item for each of the items they produce-each pieceworker in this company works on only one...
C++ Linked Lists
You have been hired by Employees. Inc to write an employee management system. The following are your specifications: Write a program that uses the following linked lists: bullet empId: a linked list of seven long integers to hold employee identification numbers. The array should be initialized with the following numbers: 5658845 4520125 7895122 8777541 8451277 1302850 7580489 bullet hours: a linked list of seven integers to hold the number of hours worked by each employee bullet payRate:...
Task 1
Attached is a data set and original questionnaire for employee
satisfaction at company ABC. Quantitatively analyse the data using
descriptive statistical techniques and add qualitative commentary
to analyse the key issues. You must use appropriate charts to
professionally display and analyse the data.
develop much further. by using what charts and tables could
have been used to display the data? Allied with this consider
systematically describing the data perhaps by question
(demographics and then group the likert based...
Code a complete Java program for the following payroll application: First, hard code the following data for the object ‘Employee’ into 4 separate arrays: SSN: 478936762, 120981098, 344219081, 390846789, 345618902, 344090917 First name : Robert, Thomas, Tim, Lee, Young, Ropal Last name : Donal, Cook, Safrin, Matlo, Wang, Kishal Hourly rate : 12.75, 29.12, 34.25, 9.45, 20.95, 45.10 Hours worked: 45, 40, 39, 20, 44, 10 These 4 arrays must be declared inside the class and not within any method....
This Java program must use classes and object-oriented design (OOD) as I'm in a more advanced Java class. (Sales Commission Calculator) A large company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9% of their gross sales for that week. For example, a salesperson who sells $5000 worth of merchandise in a week receives $200 plus 9% of $5000, or a total of $650. You’ve been supplied with a list of the items sold...
Note: You must write this program in Python. General Requirements The program should display a menu and allow the user to perform one of the following tasks. Add an item to the list Delete an item from the list Print the list Print the list in reverse Quit the program The program should run until the user chooses to quit. In Python, programmatically quitting the application is achieved with the exit() procedure. You should use a List to store the...
10. For each employee in the department with code
ACCNT, find the employee ID and number of assigned hours that the
employee is currently working on projects for other departments.
Only report an employee if she has some current project to which
she is assigned more than 50% of the time and the project is for
another department. Report the results in ascending order by
hours.
11. Find all departments where all of their employees
are assigned to all of...
C++ Programming Assignment Objectives: The objectives of Week 1 assignment is: Implement multiple selection using the control statements ( i. e switch selection statement) Work with functions in C++ and to use the logical operators Assignment Purpose: To write a program that demonstrates the concepts of the control statements that we learned this week. Assignment Description: Problem Description: A company pays its employees as managers (who receive a fixed weekly salary), hourly workers (who receive a fixed hourly wage for...
An employee is paid at a rate of $16.78 per hour for regular hours worked in a week. Any hours over that are paid at the overtime rate of 1.5 times that. From the worker's gross pay, 6% is withheld for social security tax, 14% is withheld for federal income tax, 5% is withheld for state income tax, and $10 per week is withheld for union dues. If the worker has three or more dependents, then an additional $35 is...
The following needs to be in C programming ! Outcomes: Demonstrate the ability to design a menu driven program. Demonstrate the ability to reuse previous code to create a new assignment. Demonstrate the ability to use appropriate program logic. Program Specifications: DESIGN and IMPLEMENT a menu driven program that uses the following menu and can perform all menu items: Enter a payroll record for one person Display all paycheck stubs Display total gross payroll from all pay records. Quit program...