Hi! I’m looking for help with this assignment
Attached is the pdf this is the input Manager, Mohammed, 1, 60000
Add_Developer, Hala, 2, 30000
Add_Developer, Fatima, 3, 35000
Add_Developer, Omar, 4, 25000
Add_Developer, Ahmed, 5, 42000
Add_Developer, Yousef, 6, 45000
Add_Designer, Khalid, 7, 45000
Add_Designer, Sara, 8, 25000
Add_Designer,Ali , 9, 36000
Add_Designer, Layla, 10, 39000
Give_Leave,1,3, 2024-04-01, 10
Give_Leave,1,7, 2024-04-02, 5
Give_Leave,1,15, 2024-04-03, 7
Give_Leave,2,15, 2024-04-03, 7
Give_Leave,1,8, 2024-04-03, 7
Change_State,1, 7, Working
Give_Leave,1, 3, 2024-08-12, 5
Change_State,1, 3, Working
Give_Leave,1, 3, 2024-08-12, 5
del_Employee,2
del_Employee,5
del_Employee,15
printAllEmployees
print_Leave_Records,3
This is the output Manager Mohammed added.
Developer Hala added.
Developer Fatima added.
Developer Omar added.
Developer Ahmed added.
Developer Yousef added.
Designer Khalid added.
Designer Sara added.
Designer Ali added.
Designer Layla added.
Leave approved for Fatima.
Leave approved for Khalid.
Leave approval failed. Either manager ID is incorrect or employee ID does not exist.
Leave approval failed. Either manager ID is incorrect or employee ID does not exist.
Leave approved for Sara.
Employee Khalid is now marked as working.
Cannot approve leave for Fatima as they are already on leave.
Employee Fatima is now marked as working.
Leave approved for Fatima.
Employee removed successfully.
Employee removed successfully.
Employee with ID 15 not found.
Name ID Salary Bonus Mohammed 1 60000.00 9000.00 Fatima 3 35000.00 4200.00 Omar 4 25000.00 3000.00 Yousef 6 45000.00 5400.00 Khalid 7 45000.00 4500.00 Sara 8 25000.00 2500.00 Ali 9 36000.00 3600.00 Layla 10 39000.00 3900.00 Leave Records for Fatima:
Start Date Days of Leave 2024-04-01 10 2024-08-12 5
Category: Java
-
Employee Management System
-
“Coding Challenge: Strike a Deal”
lets make a deal first
IF YOUR NOT GOOD AT CODING PLEASE DONT TAKE THIS TASK CAUSE IF YOU DID NOT PASS THE
TEST I WILL NOT GIVE YOU ANY MONEY !!!! -
“Coding Challenge: Midterm Review and Practice”
lets make a deal first
IF YOUR NOT GOOD AT CODING PLEASE DONT TAKE THIS TASK CAUSE IF YOU DID NOT PASS THE
TEST I WILL NOT GIVE YOU ANY MONEY !!!!
THE TEST IS SIMPLE ALSO I HAVE UPLOADED THE MIDTERM SO YOU KNWO WHAT YOU NEED TO DO WITH THE QUESTIONS ALSO YOU DONT HAVE TO WRITE THE WHOLE CODE YOU JUST NEED TO
WRITE WHAT THE QUESTION IS ASKING FOR AND THATS ALL PLEASE CHECK THE MIDTERM FINAL -
“Coding Test for Monetary Reward”
lets make a deal first
IF YOUR NOT GOOD AT CODING PLEASE DONT TAKE THIS TASK CAUSE IF YOU DID NOT PASS THE
TEST I WILL NOT GIVE YOU ANY MONEY !!!!
Its simple you pass the test you get your moeny and its not hard anyway
THE TEST DURATION IS 60 MINUTES
THE TEST IS SIMPLE ALSO I HAVE UPLOADED (THE MIDTERM) SO YOU KNOW WHAT YOU NEED TO
DO WITH THE QUESTIONS. ALSO YOU DONT HAVE TO WRITE THE WHOLE CODE YOU JUST NEED TO
WRITE WHAT THE QUESTION IS ASKING FOR AND THATS ALL PLEASE CHECK THE MIDTERM FINAL -
Understanding Plagiarism Understanding Plagiarism: What It Is and How to Avoid It
Please answer the questions and same instructions in the Assignment file and be sure not to plagiarism
-
“Coding Challenge: Prove Your Skills and Make a Deal!”
lets make a deal first
IF YOUR NOT GOOD AT CODING PLEASE DONT TAKE THIS TASK CAUSE IF YOU DID NOT PASS THE
TEST I WILL NOT GIVE YOU ANY MONEY !!!!
THE TEST DURATION IS 60 MINUTES
THE TEST IS SIMPLE ALSO I HAVE UPLOADED (THE MIDTERM) SO YOU KNOW WHAT YOU NEED TO
DO WITH THE QUESTIONS. ALSO YOU DONT HAVE TO WRITE THE WHOLE CODE YOU JUST NEED TO
WRITE WHAT THE QUESTION IS ASKING FOR AND THATS ALL PLEASE CHECK THE MIDTERM FINAL -
“Designing and Developing Algorithmic Solutions Using Data Structures: A Project-Based Approach”
Description and Instructions
1. Objectives
The main objective of this project is to get familiar with designing and developing an algorithmic problem solution using data structures concepts.
2. Introduction
On this project each group of students will solve a problem to assess their understanding of data structure. Students will work in groups of 2-3 students then collect their work in one report to be submitted with the other project materials.
3. Required work
Choose an algorithmic problem related to the concepts of data structures (one that has been covered in class) and write a problem statement on it.
Examples of projects topics:
Problem Name
Suggested Data Structure
Train Schedule Manager
Student Course Scheduler
Social Network Connections
Shopping Cart
Flight Reservation System
Shortest Path Finder
Music Streaming Playlist
Doubly Link list
2D- Array
Graph
Singly Link list
2D-Array
Graph
Circular Link list
Select one of the projects Name in the table above. It is also possible to suggest new project (must be approved by course instructor). Understand the problem. Implement at least two solutions of the problem using data structures.
You must use at least one data structure in your solution. Analysis the Algorithm complexity of your solutions 4. What to submit?
Project Report Source Code Describe the Problem. Describe the Algorithm used to solve the problem. Analysis the Algorithm complexity of your solutions.
Write the program in Java code to solve the problem. Marking Criteria
#
Criteria
Marks
1
Project Report 6
1.1
Describe the Problem
1
1.2 Describe the Algorithm used to solve the problem (solution 1)
1
1.3 Describe the Algorithm used to solve the problem (solution 2)
1
1.4 Analysis the Algorithm complexity of your solution 1
1.5
1.5
Analysis the Algorithm complexity of your solution 2
1.5
2
Source Code 8
2.1
Java code to solve the problem. (Solution 1)
4
2.1
Java code to solve the problem. (Solution 2)
4
Total
14
__________________________Important, we will choose problem 7 -
“Traffic Simulation GUI: Designing a Real-Time Traffic Analysis Tool”
The goal is to make my code run like the short video example. I cannot figure out how to create animation in the GUI window like the video.
As a new engineer for a traffic congestion mitigation company, you have been tasked with developing a
Java GUI that displays time, traffic signals and other information for traffic analysts. The final GUI design
is up to you but should include viewing ports/panels to display the following components of the
simulation:
1. Current time stamps in 1 second intervals
2. Real-time Traffic light display for three major intersections
3. X, Y positions and speed of up to 3 cars as they traverse each of the 3 intersections
Some of the details of the simulation are up to you but the following guidelines will set the guardrails:
1. The components listed above should run in separate threads.
2. Loop through the simulation with button(s) providing the ability to start, pause, stop and
continue the simulation.
3. You will need to use basic distance formulas such as distance = Speed * time. Be sure to be
consistent and define your units of measure (e.g. mile/hour, versus km/hour)
4. Assume a straight distance between each traffic light of 1000 meters.
5. Since you are traveling a straight line, you can assume Y = 0 for your X,Y positions.
6. Provide the ability to add more cars and intersections to the simulation through the GUI.
7. Don’t worry about physics. Assume cars will stop on a dime for red lights, and continue through
yellow lights and green lights.
8. Document all assumptions and limitations of your simulation.
And complete and UML Class Diagram
Here is the link for the code. The video has been uploaded.
https://www.sendspace.com/file/3ebefn