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

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

代做PROG2004、代寫Java設計編程

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



Assessment Brief 
PROG2004 
Object Oriented Programming 
Summary 
Title Assessment 2 
Deadline 9 June 2024 
Type Programming 
Academic Integrity Contract cheating and the use of GenAI, such as ChatGPT, in this assignment are strictly prohibited. Any breach may 
have severe consequences. 
Submission Code + Video using a USB drive 
Unit Learning Outcomes This assessment task maps to the following ULOs: 
• ULO2: apply object-oriented programming principles to solve intermediate problems 
• ULO3: distinguish between and use advanced collection classes 
• ULO4: apply various inbuilt mechanisms within the programming languages to handle concurrency and various 
forms of input and output 2 
Assessment Brief 
 
Rationale 
The purpose of this assessment is to test your ability to: 
• Apply object-oriented programming principles to solve intermediate problems 
• Distinguish between and use advanced collection classes 
• Apply various inbuilt mechanisms within the programming languages to handle concurrency and various forms of input and output 
Your work will demonstrate your learning over the first two modules of this unit. 
 
Task Description 
In this assignment, you will write the code that could form part of a management system for a gym. 
 
To get started: 
 
• Create a new Java project called username-A2 in IntelliJ. 
• In the src directory, create five classes called: 3 
Assessment Brief 
 
 
o Person 
o Staff 
o Member 
o GymClass 
o AssessmentTwo 
 
 
In the system you are creating: 
• The Staff class is used to track the gym staff, e.g., trainers, reception, etc. 
• The Member class is used to track the gym members. 
• The GymClass class is used to track the classes offered at the gym, e.g., aerobics, yoga, CrossFit, etc. 
 
In the Person class: 
• Add at least 3 instance variables suitable for a person 
• Add a default constructor and a second constructor that sets the instance variables using parameters 
• Add getters and setters for all Person instance variables 
 
In the Staff class: 
• Extend the Person class 
• Add at least 2 instance variables suitable for gym staff 
• Add a default constructor and a second constructor that sets the instance variables (Staff and Person) using parameters 
• Add getters and setters for all Staff instance variables 
 
In the Member class: 
• Extend the Person class 
• Add at least 2 instance variables suitable for a gym member 
• Add a default constructor and a second constructor that sets the instance variables (Member and Person) using parameters 
• Add getters and setters for all Member instance variables 4 
Assessment Brief 
 
 
In the GymClass class: 
• Add at least 3 instance variables suitable for a GymClass. One of these instance variables must be of type Staff, i.e. used to track the trainer running 
the GymClass. 
• Add a default constructor and a second constructor that sets the instance variables using parameters. 
• Add getters and setters for all GymClass instance variables. 
 
In the AssessmentTwo class add the following code: 
public class AssessmentTwo { 
public static void main(String[] args) { 

public void partOne(){ 

public void partTwo(){ 

public void partThree(){ 

public void partFour(){ 

public void partFive(){ 

public void partSix(){ 


 
Module 3 - Advanced Collections 
The following part of the assessment covers the content in Module 3. 
 
Part 1 – Lists 
The GymClass class is missing the ability to store a collection of Members who have signed up for the GymClass. For this part of the assignment: 
 
• Using a LinkedList, update GymClass so that a GymClass object can store a collection of Members (i.e. datatype Member) who have signed up for the 
GymClass. 5 
Assessment Brief 
 
In addition to adding a LinkedList, you need to add the following methods to GymClass that work with the LinkedList: 
 
• A method to add a Member to the GymClass. 
• A method to check if a Member is in the GymClass. 
• A method to remove a Member from the GymClass. 
• A method that returns the number of Members in the GymClass. 
• A method that prints the details of all Members signed up for the GymClass (you must use an Iterator or you will get no marks). 
 
Note: Make sure all the above methods print suitable success/failure messages. 
 
Demonstration 
In the partOne method in the AssessmentTwo class: 
• Create a new GymClass object. 
• Using the methods you created: 
o Add a minimum of 5 Members to the LinkedList. 
o Check if a Member is in the LinkedList. 
o Remove a Member from the LinkedList. 
o Print the number of Members in the LinkedList. 
o Print all Members in the LinkedList. 
 
Part 2 – Collection Class 
There is no way to sort the Members who have signed up for a GymClass. For this part of the assignment: 
• Create a class (you can choose the name) that implements the Comparator interface. When you implement the compare method from the Comparator 
interface, you must use a minimum of two of the instance variables in your comparison. 
• Create a method in the GymClass class that sorts the LinkedList using the sort(List list, Comparator c) method in the Collections class. 
 
Note: You MUST use the Comparator interface. You CAN NOT use the Comparable interface. 6 
Assessment Brief 
 
Demonstration 
In the partTwo method in the AssessmentTwo class: 
• Create a new GymClass object. 
• Using the methods you created: 
o Add a minimum of 5 Members to the LinkedList. 
o Print all Members in the LinkedList. 
o Sort the LinkedList 
o Print all Members in the LinkedList again to show that the LinkedList has been sorted. 
 
Part 3 – Queue Interface 
As most gym classes would have a maximum number of members that can sign up, the program needs the ability to keep track of Members who are waiting 
to join the gym class and the order in which they joined the waiting list, i.e., first in first out. 
For this part of the assignment: 
• Using a Queue, update the GymClass class so that a GymClass can store Members (i.e., Member objects) who are waiting to join the GymClass. 
 
In addition to adding a Queue, you need to add the following methods to the GymClass class that work with the Queue: 
• A method to add a Member to the Queue. 
• A method to remove a Member from the Queue. 
• A method that prints all the details for all Members in the Queue in the order they were added. 
 
Note: Make sure all the above methods print suitable success/failure messages. 
 
Demonstration 
In the partThree method in the AssessmentTwo class: 
• Create a new GymClass object. 
• Using the methods you created: 
o Add a minimum of 5 Members to the Queue. 7 
Assessment Brief 
 
o Remove a Member from the Queue. 
o Print all Members in the Queue. 
 
Module 4 – Advanced exception handling 
The following part of the assessment covers the content in Module 4. 
 
Part 4 – Implementing exception handling 
At the moment, you have not implemented any exception handling in your program. For this part of the assignment: 
• Where applicable, make sure that all setters in your program confirm that the values they are writing to your instance variables are valid. If they are 
not, throw an IllegalArgumentException and print an appropriate error message. 
• Add any other exception handling that you feel is appropriate to your program. 
 
Demonstration 
In the partFour method in the AssessmentTwo class: 
• Using one of the setters that you added exception handling to: 
o Pass a valid value to the method and show that the instance variable is set 
o Pass an invalid value to the method and show that the exception is caught 
 
 
Module 5 – Input/output 
The following part of the assessment covers the content in Module 5. 
An important part of many programs is the ability to back up data to a file and then restore it as needed. In this section of the assignment, we will add this 
ability to our program. 
 
Hint for exporting and importing data 
A common way to store data in a file that needs to be imported later is to use comma-separated values (csv). This means that we store a record on a single 
line, and we separate values using a comma (,). For example, imagine an object for a class called Animal has the following information: 8 
Assessment Brief 
• species: Dog 
• breed: Poodle 
• colour: Brown 
• name: Fido 
• age: 7 
 
You could store the Animal object in the file on a single line like: 
Dog, Poodle, brown, Fido, 7 
 
When you read the file, each line in the file will contain the details for a single Animal object. You can then use the split() method from the String class to split 
the line into the individual values and then use the values to create a new Animal object. 
 
Part 5 – Writing to a file 
The GymClass class is missing the ability to back up the Members who have signed up for the GymClass. For this part of the assignment: 
• Add a method to the GymClass class that writes the details of all of the Members that have signed up for the GymClass (i.e. stored in the LinkedList) 
to a file. The details for each Member should be written on their own line. 
• You must make sure to add all appropriate exception handling and error messages. 
 
Demonstration 
In the partFive method in the AssessmentTwo class: 
• Create a new GymClass. 
• Add a minimum of 5 Members to the GymClass (i.e., the LinkedList). 
• Export the Members to a file. 
 
Part 6 – Reading from a file 
The GymClass class is also missing the ability to restore the members who have signed up for the GymClass. For this part of the assignment: 
• Add a method to the GymClass class that can read the file that was created in the previous section. 9 
Assessment Brief 
 
• When reading the file, you need to sign up all members for the GymClass (i.e., add them to the LinkedList). 
You must make sure to add all appropriate exception handling and error messages. 
Note: If you cannot enrol the Members in the GymClass (i.e., add them to the LinkedList), you will still get marks for reading the file. 
 
Demonstration 
In the partSix method in the AssessmentTwo class: 
• Create a new GymClass. 
• Import the file you created in the previous part of the assignment. 
• Print the number of Members in the LinkedList to confirm that the correct number of Members were imported. 
• Print all Members in the LinkedList to confirm that the details of each Member were imported correctly. 
 
Module 6 – Concurrency 
The following part of the assessment covers the content in Module 6. 
 
Part 7 – lock() and unlock() methods 
You are using a LinkedList to store the Members signed up for a GymClass. However, a LinkedList is not thread-safe. This means that if multiple threads were 
performing operations on the Members signed up for a GymClass you could encounter issues. For this part of the assignment: 
• Use the lock() and unlock() methods to protect any critical sections of code in the GymClass class that perform any operations on the LinkedList that 
stores the Members signed up for a GymClass. 
• You must make sure to add all appropriate exception handling and error messages. 
 10 
Assessment Brief 
 
Resources 
To complete the task, you are recommended to: 
• Study modules 1 - 6 materials and complete all learning activities 
• Take an active role in the weekly tutorial and workshop. 
 
Task Submission 
You are required to submit three items for this assessment, including: 
• Your Java project 
• A short video as outlined below 
These items are outlined below: 
Java Project 
Zip your project into a file called username_A2.zip. Please note that the extension of the file must be zip. Any other compression, e.g. .rar will NOT be 
accepted. 11 
Assessment Brief 
 
 
Video 
Create a short video with a minimum one-minute explanation for each part of your assessment. In the explanation, you must: 
• Explain why you wrote your code the way you did 
• Run your code 
• Demonstrate that you understand the code you are submitting and did not use ChatGPT or similar to generate it, or copied from somewhere else. 
For each part of the assessment, if you cannot demonstrate that you understand your code you will not get marks for that part. 
 
Assessment Criteria 
Please refer to the rubric provided in the assessment folder for the assessment criteria. Marking criteria include: 
• Java code compiles with Java 17 LTS 
• Use of correct coding style, including the use of comments 
• Accuracy of coding 
• Use of suitable coding structures 
• Correct submission and naming conventions of assessment items as required 12 
Assessment Brief 
 
Use of Gen AI such as ChatGPT 
Generative artificial intelligence (GenAI) tools, such as ChatGPT, must not be used for this assessment task. You are required to demonstrate that you have 
developed the unit's skills and knowledge without the support of GenAI. If you use GenAI tools in your assessment task, it may result in an academic integrity 
breach against you, as described in the Student Academic and Non-Academic Misconduct Rules, Section 3. 
 
Please note that your assignment will be submitted to a similarity detection service by your marker. Advanced plagiarism detection software will be used that 
compares the answers for all students to all questions and flags any similarities in assessments. If your marker has any suspicion that you had help with your 
code or that your work is not your own, you will be asked to come to a meeting with your marker to explain your code. Any student who is unable to explain 
their code will be submitted for academic misconduct. 

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



















 

掃一掃在手機打開當前頁
  • 上一篇:去菲律賓入境需要提供什么(入境流程)
  • 下一篇:廣東有菲律賓大使館嗎 如何辦理簽證呢
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    欧美综合在线播放| 国产精品久久久久久搜索| 久久99精品国产99久久6尤物| 91免费人成网站在线观看18| 欧美精品在线一区| 日本精品一区二区三区在线播放视频 | 大地资源第二页在线观看高清版| 国产精品日韩av| 久久久一本精品99久久精品66| 国产精品裸体瑜伽视频| 久久99精品国产一区二区三区 | 亚洲影视中文字幕| 美女av一区二区三区| 久久天天躁狠狠躁夜夜躁| 久久久综合香蕉尹人综合网| 国产日韩欧美在线看| 欧美黄色免费影院| 日韩免费中文专区| 欧洲视频一区二区三区| 性高湖久久久久久久久aaaaa| 午夜精品一区二区三区在线播放 | 欧美激情精品久久久久久小说| 日本一区二区三区视频在线观看| 午夜精品久久久久久久无码 | 116极品美女午夜一级| 日本免费一区二区三区视频观看| 日本在线观看一区| 欧美专区在线观看| 欧美v在线观看| 妓院一钑片免看黄大片| 狠狠精品干练久久久无码中文字幕 | 国产精品福利视频| 欧美精品在线观看| 一区二区三区观看| 日韩一区二区高清视频| 这里只有精品66| 亚洲中文字幕无码专区| 欧美精品制服第一页| 国产精品久在线观看| 久久99久久亚洲国产| 亚洲欧洲免费无码| 热门国产精品亚洲第一区在线| 黄色网址在线免费看| 国产美女99p| 91看片淫黄大片91| 啊v视频在线一区二区三区 | 国产精品久久久久91| 精品中文字幕在线2019| 亚洲乱码一区二区三区| 青草网在线观看| 欧美日韩亚洲一二三| 免费h精品视频在线播放| 国产一区二区视频在线免费观看| 99久热re在线精品视频| www国产91| 欧美激情中文网| 日本精品一区二区三区在线播放视频 | 播播国产欧美激情| 久久国产精品免费视频 | 国产精品免费看久久久无码| 蜜臀久久99精品久久久久久宅男 | 欧美激情精品久久久久久变态| 日韩一区二区三区高清| 欧美日韩在线播放一区二区| 高清亚洲成在人网站天堂| 久久国产手机看片| 国产精品久久久久久久久久东京| 一区中文字幕在线观看| 日韩美女免费线视频| 黄页网站大全在线观看| 99在线看视频| 国产精品久久久久久久久久 | 久久国产精品久久久久久| 亚洲av综合色区| 国产在线高清精品| 国产a级全部精品| 国产99久久精品一区二区永久免费 | 亚洲成色www久久网站| 热久久精品免费视频| 成人av在线不卡| 国产精品久久久久久久免费大片 | 伊人婷婷久久| 黄色一级片黄色| 久久精品国产精品国产精品污| 美女久久久久久久| 男人天堂av片| 成年丰满熟妇午夜免费视频| 国产精品三区www17con| 亚洲精品一卡二卡三卡四卡| 国产一级特黄a大片99| 日韩视频免费大全中文字幕| 亚洲美女搞黄| 国产精品一区二区三区久久| 国产精品户外野外| 男人天堂手机在线视频| 日韩一区二区三区国产| 婷婷久久五月天| 91精品一区二区| 亚洲五月六月| 成人av一级片| 一本色道久久99精品综合| 国产精自产拍久久久久久蜜| 国产精品国产精品国产专区不卡 | 国产一二三区在线播放| 97精品在线观看| 国产精品精品视频一区二区三区| 日韩国产一区久久| 国产a视频免费观看| 日韩av片免费在线观看| 久久综合精品一区| 亚洲高清在线观看一区| 69精品小视频| 天天操天天干天天玩| 国产精品333| 午夜精品视频在线| 91精品久久香蕉国产线看观看| 欧美激情18p| 国产主播精品在线| 欧美精品情趣视频| 国产精品永久免费在线| 欧美激情一区二区三级高清视频| 欧美第一黄网| 国产精品视频一区二区三区四 | 午夜精品一区二区三区四区| 91av在线网站| 亚洲激情免费视频| 国产成人精品免高潮费视频| 日日摸日日碰夜夜爽av| 久久精品女人的天堂av| 日韩欧美国产免费| 久久久久在线观看| 欧美凹凸一区二区三区视频| 日韩中文字幕免费看| 日韩午夜视频在线观看| 日韩专区中文字幕| 麻豆av一区二区三区| 色在人av网站天堂精品| 国产免费成人在线| 亚洲自拍小视频| 久久精品国产一区二区三区不卡| 欧美中文在线视频| 精品久久久久久久久久中文字幕| www黄色日本| 日本欧美视频在线观看| 精品国产区一区二区三区在线观看 | 久久精品日产第一区二区三区精品版| 日本精品一区二区三区在线| 久久综合伊人77777尤物| 韩国欧美亚洲国产| 亚洲人久久久| 国产成人福利网站| 韩国欧美亚洲国产| 亚洲欧洲三级| 国产精品乱码久久久久| 久久精品国产美女| 99久热re在线精品996热视频| 国内少妇毛片视频| 欧洲精品久久久| 天天人人精品| 亚洲一区精彩视频| 欧美精品久久久久a| 国产精品久久久久久一区二区| 国产a级一级片| 91国产美女视频| 成人毛片一区二区| 蜜桃久久精品乱码一区二区| 欧美综合第一页| 日本免费一区二区三区视频观看| 亚洲免费视频一区| 亚洲一区二区三区免费观看| 欧美激情视频给我| 精品国产一二三四区| 国产精品成人播放| 久久成人亚洲精品| 欧美精品在线观看91| 久久综合五月天| 欧美精品在线极品| 久久6精品影院| 中文字幕日韩精品一区二区 | 日产国产精品精品a∨| 午夜精品久久久99热福利| 亚洲精品欧洲精品| 午夜精品久久久久久久男人的天堂 | 久久亚洲免费| 91国产丝袜在线放| 7777精品久久久久久| 久久久水蜜桃| 国产成人精品日本亚洲| 久久久久久人妻一区二区三区| 久久全球大尺度高清视频| 久久国产精品视频在线观看| 色噜噜国产精品视频一区二区 | 久久综合九色99| 久久久久欧美| 久久久精品美女| 国产精品高潮呻吟视频| 国产av第一区| 午夜免费久久久久| 日韩免费在线观看av| 国内精品在线一区|