首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
代做PROG2004、代写Java设计编程
项目预算:
开发周期:
发布时间:
要求地区:
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
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!