国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

CPT206代做、Java設計編程代寫

時間:2024-07-27  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



CPT206 Computer Programming for Financial Mathematics:
Coursework Resit Task Speciffcation
Thomas Selig
Set: Monday, 22 July, 2024
Due date: Sunday, 4 August, 2024, 23:59
This is the speciffcation task sheet for the Coursework resit assessment of your CPT206 module.
The task covers all Learning Outcomes, and has a weighting of 100% towards the ffnal grade for
this module. This assignment has two parts: a coding part described in Section 1, and a report
described in Section 2. The submission deadline for this assignment is Sunday, 4 August, 2024,
23:59. Detailed submission instructions are provided in Section 3.
1 Program description (70 marks)
The aim of this coursework is to build a company management system. All the work should be
coded into a single Java NetBeans project, with the class structure and different functionalities
of the program described as follows. All classes should be properly encapsulated, as seen in the
Lectures and Labs throughout the semester. Your project should also contain a Controller class
for testing. You may leave some or all of your test code in the Controller class if you wish when
submitting, but no marks are allocated for this class’s contents in your submission. Instead you
will be asked to describe your testing in the report (see Section 2.2), and marked on that.
1.1 Task class (14 marks)
The company will consist of a number of employees (see Section 1.2, each of which is assigned a
list of tasks. Each task consists of a description, status (not started, in progress, complete), and a
due date. The Task class should have the following methods:
• isOverdue() which indicates if a task is overdue (i.e. if the due date for the task has already
passed);
• extend(period) which extends the due date of the task by the speciffed period;
• updateStatus(newStatus) which updates the task’s status; a task’s status can only be
moved forward (from “not started” to “in progress” or “complete”, or from “in progress”
to “complete”), not backwards (e.g. from “complete” to “not started”).
1.2 Employee class (18 marks)
This class will model the employees of the company. Each employee has an ID number (unique), a
name, a salary (their monthly wage), a performance indicator (see below), and a todo list of tasks
currently assigned to them (see Section 1.1). In the todo list, tasks should be ordered according to
1their due date, with the most urgent tasks placed ffrst. You should choose a suitable data structure
in the Java collection framework for storing these. Leave a comment in your code justifying your
choice. The Employee class should also have methods to add or remove tasks from their todo list,
with the following restrictions. A task cannot be removed if it would leave them with no currently
assigned tasks. The maximum number of tasks an employee can have assigned is 20. Finally,
employees should be able to fflter their todo list to get their overdue tasks.
The performance indicator takes the following possible values: below expectations, meets
expectations, above expectations, and outstanding. These map in order to numbers 0 (for below
expectations) to 3 (for outstanding), which determine the employee’s salary increase rate, as a
percentage point. At the end of each year, an employee’s salary is updated via an updateSalary()
method, which increases their salary accordingly. So if an employee’s current salary is 10, 000 and
their performance above expectations, their salary the following year will be 10, 000 ∗ (1 + 0.02) =
10, 200. By default, when a new employee is hired by the company, their performance indicator is
set to “meets expectations”, and they do not have any tasks assigned.
1.3 TemporaryEmployee class (6 marks)
The company may at times need to hire temporary employees, for example to meet speciffc project
deadlines. Temporary employees have all the features of the standard employees from Section 1.2,
but are on ffxed-term contracts. This means that they store a date indicating when their contract
will expire. Their contract can be extended if necessary via an extendContract(period) method.
1.4 Company class (22 marks)
Finally, your program will contain a Company class to model the company’s operation. The company
should have a (legal) name, a collection of employees, and a remainingSalaryAllowance variable
indicating how much additional money the company currently has to spend on monthly salaries.
You should choose a suitable data structure in the Java collection framework for storing a company’s
employees, leaving a comment in your code justifying your choice. Companies can either be created
with a speciffed collection of employees, or by default with no employees.
The Company class should have the following methods. A number of these operations will effect
the company’s remaining salary allowance (for example ffring an employee frees up their salary
in the allowance). You should consider all these modiffcations carefully, and if any causes the
remaining salary allowance to become negative, the system should throw some form of critical
error.
• A method hire(employee) that hires a new employee, provided the remaining salary allowance
is suffffcient to do so.
• A method for ffring a given employee. An employee can only be ffred if their performance
indicator is “below expectations” and they have at least ffve overdue tasks.
• A method evaluate(employee, indicator) for evaluating an employee’s current performance.
If they have any overdue tasks, their performance indicator can be at best “meets expectations”.
• A method assign(task, employee) that assigns a currently unassigned task to an employee.
• A method assign(task, oldEmployee, newEmployee) that re-assigns a task previously
belonging to oldEmployee to newEmployee.
• Finally, there should be a method updateFinancials() to update the ffnancial situation of
the company, as follows.
2– The method should take a single parameter representing the company’s intake over the
latest period, that can be added to the remaining salary allowance.
– If the company has any temporary employees whose contract has terminated, these
should be removed from the company’s employee collection.
– If the method is called on January 1 (of any year), all current employees have their
salaries adjusted, as speciffed in Section 1.2.
1.5 Code quality (10 marks)
The remaining marks (10) will be awarded for the quality of your code, as covered throughout the
semester in the Lectures and Labs.
• Keep your code neat and tidy; make sure it is properly indented throughout.
• Choose suitable names for variables and methods, respecting standard Java naming conventions.
• Comment your code as needed.
• Split your code into separate methods as appropriate; methods should not be too long.
2 Report (30 marks)
For this part of the assignment, you will write a report detailing how you designed, implemented,
and tested the program described in Section 1. The report should be typed into e.g. a Word
document, and submitted as a PDF (see Section 3 for more details). Where suitable in the report,
you should refer to speciffc lecture slides (or parts of Lab worksheets), e.g. “as seen in Lecture 10,
slides **-34”.
2.1 OOP features (12 marks)
Over the course of the semester, you have learned a number of OOP features (e.g. encapsulation)
and principles (e.g. single responsibility principle). In your report, you will explain where you
have incorporated these in your design and how you have done so; include a brief deffnition of
the features/principles in question. Be as precise as possible, illustrating with small portions of
code if necessary. Note that not all the features and principles we saw in the lectures need to be
incorporated into your design; your report should only discuss those that are. This section should
be one-and-a-half to two pages in length.
Good example: The Single Responsibility Principle states that every class in the program
should have responsibility over a single functionality of the program; a class should do one thing.
This principle is incorporated into our class design: all the classes have their own, separate, purpose.
For instance, the Company class
1
...
Bad example: Encapsulation and inheritance are two core features of OOP; they are used in
many parts in my program.
1Give a brief description of the purpose of the Company class here.
**.2 Testing description (12 marks)
As covered throughout the Lectures and Lab sessions in this module, testing is an essential part of
writing computer programs. In your report, you will include a description of how you tested the
various parts of the program described in Section 1. You will state clearly what functionalities you
tested, and describe how you tested them, thinking carefully about possible corner cases. You may
include some sample code if you wish. You should test in the Controller class of your project,
using only tools and techniques that we covered in the Lectures and Labs throughout the semester.
For testing, you must NOT use any new or more advanced tools such as JUnit that weren’t taught.
This section should be one-and-a-half to two pages in length (screenshots excluded).
2.3 Improvements (6 marks)
Finally, this program is, by necessity, a simpliffed model. In your critical evaluation document,
you will list two (2) possible improvements to the system. These could be for instance additional
features to be implemented, changes to existing features so that the system is a more accurate
reffection of a real-world system, and so on. Give a brief justiffcation for why these would improve
the system. This part should be no longer than one page in length.
3 Submission instructions
In the dedicated “Resit submission” Assignment activity on the Learning Mall Online, you will need
to submit the following two (2) documents. The submission deadline is: Sunday, 4 August,
2024, 23:59.
• A single ZIP archive of your entire NetBeans project. Include all the resources your
project needs to run. This ffle will be named “CPT206_Resit_Project_StudentId.zip”.
• Your report from Section 2, typed into e.g. a Word document, and converted into a PDF
ffle. This ffle will be named “CPT206_Resit_Report_StudentId.pdf”.
This assignment is individual work. Plagiarism (e.g. copying materials from other sources
without proper acknowledgement) is a serious academic offence. Plagiarism and collusion will not
be tolerated and will be dealt with in accordance with the University Code of Practice on Academic
Integrity. Submitting work created by others, whether paid for or not, is a serious offence, and
will be prosecuted vigorously. The use of generative AI for content generation is not permitted
on this assignment. Such a use would be considered in breach of the University Code of Practice
on Academic Integrity, and dealt with accordingly. Individual students may be invited to explain
parts of their code in person during a dedicated interview session, and if they fail to demonstrate
an understanding of the code, no credit will be given for that part of the code.
Late submissions. The standard University policy on late submissions will apply: 5% of
the total marks available for the component shall be deducted from the assessment mark for each
working day after the submission date, up to a maximum of ffve working days, so long as this does
not reduce the mark below the pass mark (40%); submissions more than ffve working days late will
not be accepted.
Good luck!


請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:代做320SC、代寫Python/Java設計編程
  • 下一篇:COMP1921代寫、Java/Python/c++編程語言代做
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产麻花豆剧传媒精品mv在线 | 国产精品视频一区二区三区经| 国产精品一区二区三区四区五区| 欧美最猛性xxxx| 日韩欧美手机在线| 欧美日韩在线不卡视频| 国产主播喷水一区二区| 久久人人爽人人爽人人av| 亚洲综合中文字幕在线| 亚洲最大成人网色| 欧美一区二区影院| 精品国产一二| 国产精品久久电影观看| 久久久国产成人精品| 成人国产亚洲精品a区天堂华泰| 蜜臀av.com| 韩国欧美亚洲国产| 免费h精品视频在线播放| 麻豆91av| 99精彩视频| 久久久久福利视频| 久久99精品久久久水蜜桃| 超碰网在线观看| 69国产精品成人在线播放| 欧美日韩高清在线观看| 日韩中文字幕免费在线| 国产精品免费一区二区三区在线观看| 国产l精品国产亚洲区久久| 色老头一区二区三区| 久久99久久亚洲国产| 亚洲精品国产一区| 欧美日韩亚洲一区二区三区四区| 精品少妇人妻av一区二区| 精品亚洲第一| 亚洲黄色一区二区三区| 日韩精品资源| 国产奶头好大揉着好爽视频| 国产情人节一区| 国产二区一区| 精品国产一区二区三区免费| 亚洲国产精品一区在线观看不卡| 日韩免费在线播放| 国产精品一二三视频| 91成人国产在线观看| 国产精品欧美激情在线观看| 欧美一区二区三区电影在线观看| 免费精品视频一区| 日韩有码在线观看| 婷婷五月色综合| 国产在线精品自拍| 国产欧美日韩视频一区二区三区 | 国产乱码精品一区二区三区不卡| 国产高清精品软男同| 中文字幕精品—区二区日日骚| 国内精品一区二区三区四区| 久久久久久久97| av一区二区三区免费观看| 高清欧美性猛交xxxx| 久久精品最新地址| 欧美一区二区激情| 久久久久99精品成人片| 日韩中文字幕在线视频观看| 成人久久久久爱| 国产精品二区在线| 国产一区二区三区高清视频| 久久躁狠狠躁夜夜爽| 日韩少妇内射免费播放| 日韩中文视频免费在线观看| 欧美精品久久久久久久免费| 日韩视频在线免费看| 久久精品人人做人人爽| 国产午夜大地久久| 精品国产综合久久| wwwwww欧美| 色婷婷综合久久久久中文字幕| 国产成人av在线播放| 欧美久久久久久久久久久久久 | 国产成人av影视| 日本不卡二区| 国产精品激情av在线播放| 国产伦精品一区二区三区免| 亚洲xxxx视频| 国产精品免费一区| 久久免费一区| 精品日韩在线播放| 日韩中文字幕亚洲精品欧美| 久久久国产91| 国产精品91在线| 国内久久久精品| 日本在线视频不卡| 精品国产一区二区三区日日嗨| 成人免费观看视频在线观看| 人妻内射一区二区在线视频| 一区二区高清视频| 国产精品久久久久久久久男| av久久久久久| 免费看国产精品一二区视频| 日韩在线xxx| 欧美精品福利视频| 国产精品久久久久久久app | 国产精品久久久久久久7电影| 国产免费观看久久黄| 欧美一区二区三区在线播放| 毛片精品免费在线观看| 国产成人精品无码播放| 国产精品一区二区三区精品| 狠狠干一区二区| 欧美一区亚洲二区| 视频一区二区在线| 亚洲在线观看视频| 在线国产99| 亚洲影视中文字幕| 亚洲一区二区三区欧美| 中文字幕一区二区三区乱码 | 亚洲欧洲精品一区二区三区波多野1战4| 国产精品偷伦一区二区| www国产91| 色噜噜狠狠色综合网图区| 国产高清免费在线| www亚洲精品| 国产精品盗摄久久久| 不卡av在线播放| 欧美日韩高清区| 性一交一乱一伧国产女士spa| 欧美日韩第一页| 国产精品三级一区二区| 久久91亚洲精品中文字幕| 亚洲色婷婷久久精品av蜜桃| 人人妻人人做人人爽| 国产在线观看欧美| 国产精品一区久久| 久久99蜜桃综合影院免费观看| 久久福利电影| 美女精品久久久| 日本午夜在线亚洲.国产| 免费99视频| 久久久成人精品一区二区三区| 国产精品国产精品国产专区不卡 | 欧美日韩电影一区二区| 高清一区二区三区四区五区| 色狠狠久久aa北条麻妃| 亚洲一区二区三区在线视频| 色婷婷精品国产一区二区三区| 欧美日韩精品在线一区二区| 国产拍精品一二三| 国产九九九九九| 日韩专区在线观看| 国产精品久久久久久婷婷天堂| 中文字幕日韩精品久久| 中国人体摄影一区二区三区| 久草青青在线观看| 伊人久久青草| 日本网站免费在线观看| 欧美日本韩国国产| 国产日本欧美在线| 99三级在线| 欧美人与物videos| 日本中文字幕成人| 国产做受69高潮| 久久久水蜜桃| 日韩中文字幕亚洲| 一区二区三区电影| 欧美一区二三区| 国产成人高清激情视频在线观看| 久久99国产精品自在自在app| 午夜精品美女自拍福到在线| 国产精品专区在线| 国产精品爽黄69天堂a| 欧美诱惑福利视频| 久久久精品欧美| 久久99精品久久久久久噜噜| 人人爽久久涩噜噜噜网站| 久久伊人一区| 亚洲乱码一区二区三区三上悠亚 | 精品久久中出| 欧美精品在线播放| 久久精品国产欧美激情| 日韩一区国产在线观看| 国产精品男人的天堂| 国模私拍一区二区三区| 精品亚洲第一| 欧美久久在线观看| 久久精品亚洲94久久精品| 久久久精品久久久久| 91精品国产综合久久香蕉的用户体验| 亚洲aaa激情| 国产精品免费看一区二区三区 | 欧美综合在线播放| 国产精品福利在线观看网址| 国产99视频精品免费视频36| 欧美日韩精品久久| 久久综合久久八八| 高清视频在线观看一区| 91精品国产91久久久久久 | 国产日韩精品入口| 国产成人av在线播放| 欧美xxxx做受欧美| 免费看国产一级片| 黄色大片中文字幕| 国产精品视频不卡|