99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

CPT206代做、Java設(shè)計(jì)編程代寫

時(shí)間:2024-07-27  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



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!


請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:代做320SC、代寫Python/Java設(shè)計(jì)編程
  • 下一篇:COMP1921代寫、Java/Python/c++編程語言代做
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評(píng) 開團(tuán)工具
    出評(píng) 開團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          亚洲第一在线综合网站| 欧美日韩精品一区| 国产美女高潮久久白浆| 亚洲国产精品一区在线观看不卡| 午夜视频一区二区| 欧美日韩在线精品| 亚洲国产高清高潮精品美女| 久久成人精品无人区| 国产精品视频自拍| 亚洲图片欧美午夜| 欧美日韩亚洲成人| 一本大道久久精品懂色aⅴ| 欧美成人在线免费观看| 影音先锋久久| 久久伊人精品天天| 曰韩精品一区二区| 久久久精品国产免大香伊| 国产欧美三级| 欧美一区不卡| 国产亚洲精品资源在线26u| 亚洲欧美日韩一区在线| 国产精品久久久久久av下载红粉| 99re6热在线精品视频播放速度| 另类亚洲自拍| 亚洲激情av| 欧美日韩福利在线观看| 在线亚洲观看| 国产精品久久久久久亚洲毛片| 亚洲一区在线视频| 国产区日韩欧美| 久久久国产精品一区二区中文| 国内自拍亚洲| 牛人盗摄一区二区三区视频| 亚洲精品一区在线| 国产精品videossex久久发布| 亚洲小少妇裸体bbw| 国产精品久久影院| 欧美在线观看你懂的| 激情综合激情| 欧美日本一区| 欧美一级片一区| 狠狠色综合网站久久久久久久| 久久日韩精品| 99视频精品全部免费在线| 国产精品美女久久久免费| 久久精品国产久精国产一老狼| 在线观看一区视频| 欧美日韩日本国产亚洲在线| 亚洲欧美国产精品va在线观看| 国产嫩草影院久久久久 | 亚洲视频1区| 国产三级精品三级| 欧美成年人网| 欧美亚洲视频| 亚洲人成在线观看| 国产日韩视频| 欧美大片第1页| 香蕉久久久久久久av网站| 永久免费视频成人| 国产精品vvv| 欧美国产激情| 欧美中日韩免费视频| 亚洲毛片网站| 在线播放国产一区中文字幕剧情欧美| 欧美日韩亚洲视频一区| 久久亚洲精品视频| 一区二区三区国产| 在线电影一区| 国产日韩欧美在线| 欧美午夜在线观看| 欧美国产国产综合| 久久男人av资源网站| 亚洲手机视频| 亚洲精品老司机| 黄色在线一区| 国产日本欧美一区二区三区| 欧美日韩精品一本二本三本| 免费在线成人av| 久久人人看视频| 久久国产精品黑丝| 亚洲午夜久久久久久久久电影院| 亚洲第一黄网| 国内揄拍国内精品久久| 国产精品日韩欧美一区| 欧美日韩国产色视频| 欧美大尺度在线观看| 久久久国产亚洲精品| 欧美在线观看视频| 欧美亚洲一区| 午夜在线观看免费一区| 亚洲影院高清在线| 亚洲五月婷婷| 一本到12不卡视频在线dvd| 91久久黄色| 亚洲国产成人精品久久| 在线观看亚洲视频| 伊人久久婷婷色综合98网| 国内精品伊人久久久久av影院| 欧美久久久久中文字幕| 91久久综合亚洲鲁鲁五月天| 好男人免费精品视频| 国产情侣久久| 狠狠色丁香久久婷婷综合_中| 国产欧美一二三区| 国产亚洲精品成人av久久ww| 国产精品综合色区在线观看| 国产免费亚洲高清| 国产一区二区三区视频在线观看| 国产视频一区二区在线观看| 国产自产高清不卡| 在线 亚洲欧美在线综合一区| 在线欧美电影| 亚洲美女黄色| 亚洲一区二区三区成人在线视频精品| 亚洲影音一区| 久久国产精品一区二区三区四区| 久久精品一二三区| 欧美成人综合网站| 欧美日韩一区三区四区| 国产精品久久久久一区| 国语精品一区| 亚洲精品孕妇| 午夜日韩在线观看| 久久综合久久综合久久综合| 欧美人成免费网站| 国产精品久久久久一区二区三区共| 国产农村妇女精品| 亚洲高清色综合| 一区二区高清| 欧美在线三级| 欧美日韩一二区| 国产一区二区| 亚洲另类在线一区| 亚洲欧美日韩专区| 久久综合中文字幕| 欧美日韩天堂| 黄色一区二区在线观看| 亚洲社区在线观看| 久久午夜av| 国产精品成人免费视频| 在线看片第一页欧美| 在线天堂一区av电影| 久久久久网站| 欧美调教vk| 在线成人激情黄色| 亚洲欧美日韩在线播放| 你懂的国产精品| 国产婷婷精品| 中国成人黄色视屏| 欧美二区在线观看| 国产一区二区日韩| 亚洲永久网站| 欧美黄色aa电影| 国内精品美女在线观看| 亚洲小说区图片区| 欧美激情成人在线| 在线免费高清一区二区三区| 午夜欧美大片免费观看| 欧美香蕉视频| 日韩视频在线观看免费| 久久亚洲一区| 国产一区二区三区在线观看精品| 亚洲视频在线观看三级| 欧美精品啪啪| 亚洲高清激情| 久久亚洲国产精品日日av夜夜| 国产精品夜夜嗨| 亚洲在线播放| 国产精品久久久久久久久搜平片 | 亚洲精品久久久久久久久| 久久久精品动漫| 国产一区二区三区四区五区美女| 亚洲一区精品在线| 欧美亚州一区二区三区| 日韩午夜激情| 欧美精品一区二区视频| 亚洲黄色毛片| 欧美va亚洲va香蕉在线| 亚洲电影在线看| 欧美大片网址| 91久久在线| 欧美日韩成人在线播放| 亚洲精品视频中文字幕| 欧美精品播放| avtt综合网| 国产精品高潮呻吟视频| 亚洲视频播放| 国产精品theporn88| 亚洲欧美国产高清va在线播| 国产精品爽黄69| 欧美一区二区在线免费播放| 国产欧美日韩中文字幕在线| 欧美一区二区精美| 韩国av一区二区三区在线观看| 久久亚洲精品欧美| 亚洲国内精品在线| 欧美视频在线观看免费网址| 亚洲欧美日韩中文在线制服| 国语精品一区| 欧美另类亚洲|