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

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

代做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



















 

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

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

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

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

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

          国模吧视频一区| 欧美视频网站| 欧美一二区视频| 亚洲国产精品999| 国产精品人人爽人人做我的可爱| 久久久久久久性| 亚洲视频专区在线| 亚洲人成毛片在线播放女女| 国产精品一区在线观看你懂的| 欧美刺激性大交免费视频| 欧美有码在线视频| 亚洲一区欧美激情| 一本色道久久精品| 日韩视频精品| 99re国产精品| av不卡在线观看| 日韩视频永久免费观看| 亚洲国产裸拍裸体视频在线观看乱了中文 | 亚洲图片欧美日产| 一本久道久久久| 日韩视频一区二区三区在线播放| 亚洲高清激情| 尤妮丝一区二区裸体视频| 国内外成人免费激情在线视频网站| 国产精品h在线观看| 国产精品久久久久久久久久久久久久 | 亚洲免费成人av| 国产精品久久久久久久久久久久 | 亚洲精品一二三| 亚洲高清视频一区二区| 亚洲第一网站免费视频| 尤物在线精品| 亚洲黄色免费网站| 亚洲免费观看| 一区二区精品在线| 亚洲一区二区欧美日韩| 欧美亚洲三区| 久久久最新网址| 媚黑女一区二区| 欧美激情一区二区三区| 欧美精品二区| 欧美特黄一级| 国产欧美一区视频| 伊人成人开心激情综合网| 亚洲国产日韩综合一区| 一区二区免费在线视频| 欧美一区1区三区3区公司| 久久久久久亚洲精品中文字幕| 老牛嫩草一区二区三区日本| 欧美激情一区二区三区在线视频| 国产精品成人一区二区三区夜夜夜| 国产精品久久久久久久一区探花| 国产亚洲一级| 亚洲精品在线视频观看| 西西裸体人体做爰大胆久久久| 美女精品视频一区| 国产精品久久久久一区二区三区共| 国内精品伊人久久久久av一坑| 亚洲激情成人| 久久成人av少妇免费| 欧美成人亚洲成人| 国产一区av在线| 一区二区三区色| 快射av在线播放一区| 国产精品理论片| 亚洲国产精品免费| 欧美中文字幕视频| 欧美日韩在线观看一区二区| 精品动漫一区| 亚洲综合国产激情另类一区| 免费观看亚洲视频大全| 国产欧美一区二区在线观看| 日韩一区二区免费看| 久久久久一区二区三区| 国产精品日日摸夜夜摸av| 日韩视频免费看| 暖暖成人免费视频| 在线成人中文字幕| 久久久久国色av免费看影院| 国产精品美女xx| 夜夜狂射影院欧美极品| 欧美激情国产日韩| 91久久久久久久久久久久久| 久久综合国产精品| 极品尤物av久久免费看| 久久99伊人| 国产婷婷成人久久av免费高清 | 欧美视频精品在线| 亚洲人体影院| 欧美久久在线| 日韩午夜一区| 欧美四级在线| 亚洲无亚洲人成网站77777| 欧美日产在线观看| 99在线精品视频| 欧美日韩无遮挡| 亚洲天堂网站在线观看视频| 欧美日韩亚洲一区二区三区在线| 日韩视频免费大全中文字幕| 欧美国产日韩一区二区| 亚洲乱码国产乱码精品精天堂 | 欧美成人午夜激情视频| 国产婷婷色综合av蜜臀av| 亚洲欧美另类国产| 国产欧美日韩亚洲一区二区三区 | 国产一区二区主播在线 | 国产精品中文字幕在线观看| 亚洲一区国产| 激情欧美一区| 欧美大片在线观看一区| 一区二区精品在线| 国产视频亚洲精品| 久久综合狠狠| 亚洲免费观看高清在线观看| 国产精品国产三级国产专播品爱网| 亚洲综合色激情五月| 国产欧美一区二区白浆黑人| 久久久国产精彩视频美女艺术照福利| 亚洲第一精品久久忘忧草社区| 欧美国产第一页| 亚洲女人天堂成人av在线| 国内精品国产成人| 欧美日韩精品免费看| 欧美一级成年大片在线观看| 亚洲国产精品va在线看黑人| 国产精品成av人在线视午夜片| 午夜在线视频观看日韩17c| 国内一区二区三区| 欧美午夜剧场| 久久这里只有精品视频首页| 在线亚洲一区二区| 精品不卡一区| 国产精品性做久久久久久| 欧美成人免费全部| 午夜精品婷婷| 亚洲裸体俱乐部裸体舞表演av| 国产嫩草影院久久久久| 欧美精品播放| 久久国产精品亚洲va麻豆| 亚洲精品视频在线| 国语自产精品视频在线看一大j8 | 国产欧美日韩一区二区三区在线| 欧美大片专区| 久久婷婷蜜乳一本欲蜜臀| 亚洲欧美日韩在线观看a三区| 亚洲国产欧美日韩| 极品裸体白嫩激情啪啪国产精品| 国产精品白丝jk黑袜喷水| 欧美激情视频网站| 久久乐国产精品| 欧美在线啊v| 亚洲欧美美女| 亚洲欧美日韩区| 宅男在线国产精品| 99天天综合性| 日韩天堂在线观看| 亚洲精品系列| 日韩一区二区精品| 99精品视频免费全部在线| 亚洲国产天堂久久综合网| 在线精品视频一区二区三四| 国产欧美日韩视频在线观看| 国产精品久久久一区二区三区 | 亚洲一区二区三区午夜| 一本到高清视频免费精品| 日韩一级视频免费观看在线| 99re6这里只有精品| 亚洲免费高清| 一区二区三区|亚洲午夜| 一区二区av在线| 亚洲一级一区| 欧美一区二区三区的| 久久精品免费观看| 久久蜜桃香蕉精品一区二区三区| 久久最新视频| 欧美成人国产一区二区| 欧美日韩三区四区| 国产精品白丝av嫩草影院| 国产精品成人午夜| 国产精品久久久久久久久借妻| 国产精品美女久久福利网站| 国产精品久久久久999| 国产欧美精品久久| 精品99视频| 日韩视频中午一区| 亚洲一区尤物| 久久激情五月激情| 欧美成人免费在线| 国产精品久久久久av免费| 国产精品自拍小视频| 在线观看欧美日本| 亚洲午夜精品一区二区| 久久精品亚洲一区| 欧美日韩国产三区| 国产在线精品二区| 日韩视频在线观看国产| 午夜在线播放视频欧美| 欧美国产精品日韩| 国产一区高清视频| 一本色道久久综合精品竹菊 |