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

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

PROG2004代做、代寫C/C++編程設計
PROG2004代做、代寫C/C++編程設計

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



Assessment Brief 

PROG2004 
Object Oriented Programming (Assessment 1) 
 
Title Assessment 1 
Type Programming 
Deadline 4 December 11:59 AM 
Weighting 20% 
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 You will need to submit 2 Java projects as detailed. 
Unit Learning Outcomes This assessment task maps to the following ULOs: 
• ULO1: explain, compare, and apply advanced class design concepts 
• ULO2: apply object-oriented programming principles to solve intermediate problems 
• ULO3: distinguish between and use advanced collection classes 2 
Assessment Brief 
 
Task 1: 
 
 In this assignment, you will write the code that manages the product categories on any website, such as Alibaba (Use another website). 
 
 To get started: 
 
• Create a new Java project called Project1 in IntelliJ. 
• In the src directory, create a new class called AssignmentOne. 
• In the AssignmentOne class, create the main method. 3 
Assessment Brief 
 
 
Module 1 - Advanced class design 
The following part of the assessment covers the content in Module 1. 
Part 1 – Creating abstract classes and interfaces 
Go to the website you choose and explore all the different categories of products that they sell. While you are doing this, have a look at the 
different product categories as they go from more general to more specific. At the top level of the Inheritance hierarchy, you need a generic 
product. In your Java project: 
• Create a new interface called Product with at least two generic methods that are suitable for ALL product categories on the the website 
you choose. 
Alibaba sells physical and digital products. Therefore, in the inheritance hierarchy, under products, you would need to handle physical products 
and digital products. In your Java project: 
• Create an abstract class called PhysicalProduct that implements the interface called Product. 
• Create an abstract class called DigitalProduct that implements the interface called Product. 
The PhysicalProduct and DigitalProduct abstract classes must have the following at a minimum that are suitable for ALL physical OR digital 
product categories on the Alibaba website: 
• At least two instance variables 
• A default constructor 
• A second constructor that sets all the instance variables 
• At least one abstract method 
• At least one non-abstract method 
• Any other methods or variables that you feel are necessary for the class to be usable in the program 
 
 
Part 2 – Using abstract classes and interfaces 
On the Alibaba website, choose one physical product category and one digital product category. In your project: 
• Create one concrete class that extends the PhysicalProduct abstract class. 
• Create one concrete class that extends the DigitalProduct abstract class. 
 
 The classes should match the physical product category and digital product category you chose on the Alibaba site and have the following at 
a minimum: 4 
Assessment Brief 
 
 
• At least two instance variables (one of these variables must be a boolean as a boolean instance variable is required in a later section of the 
assignment) 
• A default constructor 
• A second constructor that initialises all the instance variables (including the instance variables in the abstract superclass) 
• A method that prints the Product details, e.g. "The product details are:" followed by all instance variables formatted for readability 
(including the instance variables in the abstract superclass) 
• Any other methods or variables needed so that your products match the physical product category and digital product category you 
chose on the Alibaba site. 
For each class, in the class comments, you MUST provide a link to the product category on Alibaba that you based 
your class on. In the main method: 
• Add the following comment - // Part 2 – Using abstract classes and interfaces 
• Create an object for the concrete class that extends the PhysicalProduct abstract class using the constructor that sets all instance 
variables. 
• Create an object for the concrete class that extends the DigitalProduct abstract class using the constructor that sets all instance 
variables. 
• Add the following code - System.out.println(" -------------------- "); 
 
 
Part 3 – Polymorphism 
In the AssignmentOne class, write a method called demonstratePolymorphism that takes one parameter. The parameter type can be either a: 
• Product 
• PhysicalProduct 
• DigitalProduct 
 
 In the main method: 
• Add the following comment - // Part 3 – Polymorphism 
• Add a second comment that explains how you are going to use the method you just created to demonstrate your understanding of 
polymorphism 
• Write the code to create an object and use the method you just created to demonstrate your understanding of polymorphism 
• Add the following code - System.out.println(" -------------------- "); 5 
Assessment Brief 
 
 
NOTE: Do not remove the code in the main method for Part 2 (or any other part of the assignment). You can comment it out when you are 
developing; however, when you submit your assignment, the main method must contain all the code required for all parts of the assignment, i.e., 
your marker should be able to run your main method, and all parts of your assignment should run in one go. 
 
 
Module 2 – Generics and lambdas 
The following part of the assessment covers the content in Module 2. 
In Part 2 of this assessment, you created a concrete class that extends the PhysicalProduct abstract class. For the remainder of this 
assessment, this class will be referred to as yourClass as, in theory, all students should have a different name for this class. 
 
 
Part 4 – Generic classes 
In this part of the assignment, you are going to write the code for an ArrayList that can store instances (objects) of 
yourClass. In the main method, write the code to: 
• Add the following comment - // Part 4 – Generic classes 
• Declare an ArrayList 
• Add at least 5 instances of yourClass to the ArrayList 
• Add the following code - System.out.println(" -------------------- "); 
 
 
Part 5 – Generic methods 
In this part of the assignment, you are going to sort the ArrayList that we created in part 4. 
In yourClass, implement the Comparable interface. When you implement the compareTo() method from the Comparable interface, you must 
use at least two instance variables in the comparison. 
Once you have implemented the Comparable interface in the main method: 
• Add the following comment - // Part 5 - Generic methods 
• Write the code to sort the ArrayList that you created in Part 4. 
• Add the following code - System.out.println(" -------------------- "); 6 
Assessment Brief 
 
 
Part 6 – Wildcards 
In the AssignmentOne class, create a method called DemonstrateWildcards that takes an ArrayList generic parameter <? extends T>. In 
the method, call one of the methods from PhysicalProduct abstract class. 
In the main method: 
• Add the following comment - // Part 6 - Wildcards 
• Add a second comment that explains how you are going to use the method you just created to demonstrate your understanding of wildcards 
• Write the code to create an object and use the method you just created to demonstrate your understanding of wildcards 
• Add the following code - System.out.println(" -------------------- "); 
 
 
Part 7 – Simple lambda expressions 
In the AssignmentOne class, create a method called DemonstrateLambdas that takes an ArrayList of yourClass and a Predicate as a 
parameter. In the method, test the Boolean instance variable from yourClass and print a suitable message based on whether it is true or false. 
In the main method: 
• Add the following comment - // Part 7 - Simple lambda expressions 
• Write the code to pass the Arraylist that you created in Part 4 to the DemonstrateLambdas method 
• Add the following code - System.out.println(" -------------------- "); 
 
• 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 School 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 
In the Classroom class: 
• Add at least 3 instance variables suitable for a Clasrooms. One of these instance variables must be of type Staff, i.e. used to track the trainer 
running the Classroom. 
• Add a default constructor and a second constructor that sets the instance variables using parameters. 
• Add getters and setters for all Classroom 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(){ 


 9 
Assessment Brief 
 
Module 3 - Advanced Collections 
The following part of the assessment covers the content in Module 3. 
 
Part 1 – Lists 
The Classroom class is missing the ability to store a collection of Members who have signed up for the Classroom. For this part of the assignment: 
 
• Using a LinkedList, update Classroom so that a Classroom object can store a collection of Members (i.e. datatype Member) who have signed up for 
the 
Classroom. 
 
In addition to adding a LinkedList, you need to add the following methods to Classroom that work with the LinkedList: 
 
• A method to add a Member to the Classroom. 
• A method to check if a Member is in the Classroom. 
• A method to remove a Member from the Classroom. 
• A method that returns the number of Members in the Classroom. 
• A method that prints the details of all Members signed up for the Classroom (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 Classroom 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. 10 
Assessment Brief 
 
 
Part 2 – Collection Class 
There is no way to sort the Members who have signed up for a Classroom. 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 Classroom 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. 
 
Demonstration 
In the partTwo method in the AssessmentTwo class: 
• Create a new Classroom 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 School 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 School 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 Classroom class so that a Classroom can store Members (i.e., Member objects) who are waiting to join the Classroom. 
 
 In addition to adding a Queue, you need to add the following methods to the Classroom 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. 11
Submission ZIP file via USB drive (Name+ Complete student number + Assignment 1) 
You are required to submit Three items for this assessment, including: 
• Project 1 
• Project 2 
• A 10 minutes video explain Project 1 and Project 2 
Assessment Criteria 
• 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. 
 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp


 

掃一掃在手機打開當前頁
  • 上一篇:代做QHE5701、代寫SQL程序設計
  • 下一篇:代寫QHE5701、SQL編程語言代做
  • 無相關信息
    合肥生活資訊

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

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

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

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

          国产视频精品xxxx| 国产精品va在线播放| 欧美精品v日韩精品v国产精品| 午夜视频在线观看一区二区三区| 欧美精品久久99久久在免费线| 亚洲第一在线综合网站| 欧美在线免费| 有码中文亚洲精品| 国产精品无人区| 亚洲视频二区| 欧美一区二视频在线免费观看| 影音先锋成人资源站| 欧美日韩黄色一区二区| 亚洲狼人综合| 国产偷国产偷亚洲高清97cao| 欧美一区二区黄色| 亚洲美女精品一区| 国产精品av久久久久久麻豆网| 亚洲高清av在线| 久久精品一级爱片| 一区二区三区亚洲| 麻豆freexxxx性91精品| 91久久极品少妇xxxxⅹ软件| 欧美 日韩 国产 一区| 影音欧美亚洲| 欧美成人首页| 亚洲最新视频在线播放| 国产精品免费观看视频| 欧美亚洲色图校园春色| 精品91在线| 欧美电影电视剧在线观看| 999亚洲国产精| 国产精品日韩欧美一区二区| 久久爱另类一区二区小说| 伊人精品在线| 欧美美女喷水视频| 亚洲一区高清| 韩国三级电影久久久久久| 欧美1区3d| 亚洲精品一区二区三区99| 国产精品夫妻自拍| 欧美亚洲综合久久| 最新国产精品拍自在线播放| 欧美视频在线观看| 欧美在线观看一区| 亚洲美女精品一区| 国产亚洲一区二区在线观看 | 久久婷婷色综合| 亚洲电影天堂av| 国产精品久久久久aaaa樱花 | 日韩视频在线你懂得| 久久动漫亚洲| 亚洲日韩欧美视频| 国产精品人人爽人人做我的可爱 | 在线观看不卡| 欧美日韩网站| 久久综合久久综合久久| 亚洲亚洲精品三区日韩精品在线视频| 国产自产在线视频一区| 欧美日韩一区不卡| 久久这里有精品15一区二区三区| 夜夜爽www精品| 亚洲第一福利视频| 国产精品高潮视频| 欧美成人免费大片| 久久国产精品久久精品国产 | 99这里只有久久精品视频| 国产真实久久| 国产精品毛片a∨一区二区三区|国 | 欧美成va人片在线观看| 亚洲最新视频在线| 精品1区2区| 国产欧美午夜| 欧美日韩一区二区三区四区在线观看| 久久久久免费视频| 香蕉久久夜色精品| 亚洲国产高清一区二区三区| 国产一区免费视频| 国产精品有限公司| 国产精品成人观看视频免费| 欧美片在线观看| 免播放器亚洲一区| 久久精品视频在线免费观看| 亚洲欧美日韩精品在线| 亚洲天堂av高清| 99在线精品观看| 亚洲精品久久久久久久久久久久 | 午夜精品久久久久久久 | 一本色道88久久加勒比精品| 精品不卡视频| 黄色av成人| 伊人激情综合| 狠狠综合久久av一区二区老牛| 国产色产综合产在线视频| 国产老女人精品毛片久久| 国产精品进线69影院| 欧美性做爰猛烈叫床潮| 国产精品爱啪在线线免费观看| 欧美日韩亚洲天堂| 欧美性大战久久久久| 国产精品激情电影| 国产精品一区二区三区乱码| 国产精品午夜在线| 国产婷婷色综合av蜜臀av| 国产一区二区日韩精品| 在线观看欧美黄色| 亚洲每日在线| 亚洲一区日韩在线| 欧美在线视频免费| 久久先锋资源| 欧美精品在线一区二区三区| 欧美日韩亚洲国产一区| 欧美日本簧片| 亚洲狼人精品一区二区三区| 亚洲国产精品小视频| 日韩视频免费观看高清完整版| 在线视频你懂得一区| 亚洲视频专区在线| 久久精品国产2020观看福利| 久久人人97超碰人人澡爱香蕉| 蜜桃久久精品乱码一区二区| 欧美久久电影| 国产欧美精品一区二区色综合 | 国产一区二区三区视频在线观看| 激情久久婷婷| 一区二区三区欧美日韩| 在线观看日韩| 国产午夜一区二区三区| 国产麻豆综合| 国产一区二区福利| 国产美女搞久久| 日韩午夜一区| 欧美国产日韩免费| 欧美精品1区| 黄色成人精品网站| 一区免费观看| 欧美日韩久久久久久| 欧美v日韩v国产v| 欧美午夜片欧美片在线观看| 欧美国产日韩亚洲一区| 亚洲激精日韩激精欧美精品| 欧美日韩综合在线免费观看| 亚洲精品一区二区三区99| 欧美亚洲一级片| 欧美精品网站| 国内精品免费在线观看| 一二美女精品欧洲| 女人香蕉久久**毛片精品| 国产精品网站在线| 99精品国产福利在线观看免费| 久久黄色小说| 欧美午夜精品久久久久久超碰| 亚洲综合三区| 久久久久欧美精品| 欧美精品首页| 精品成人一区| 亚洲在线视频免费观看| 欧美国产日韩免费| 欧美凹凸一区二区三区视频| 国产精品家庭影院| 国产一区二区精品久久| 午夜一级在线看亚洲| 久久一区免费| 国产精品网站在线| 一区二区三区波多野结衣在线观看| 欧美在线视频观看| 国产精品人人做人人爽| 亚洲国产专区校园欧美| 久久综合给合久久狠狠色| 国产午夜亚洲精品羞羞网站| 亚洲欧美区自拍先锋| 欧美日韩综合在线| 99综合电影在线视频| 亚洲国产另类久久久精品极度| 一本久久知道综合久久| 欧美黑人多人双交| 好吊成人免视频| 午夜亚洲性色视频| 国产精品爽爽ⅴa在线观看| 亚洲国产欧美日韩精品| 久久在精品线影院精品国产| 国产精品久久久久久久9999| 亚洲精品少妇网址| 欧美二区在线| 国产精品久久看| 欧美一区二区在线播放| 欧美日韩色综合| 欧美国产国产综合| 亚洲片区在线| 欧美日韩成人在线观看| 日韩系列在线| 国产精品久久久久毛片软件| 亚洲午夜高清视频| 国产精品亚洲综合色区韩国| 亚洲少妇一区| 国产精品久久97| 欧美一级在线亚洲天堂| 国产精品成av人在线视午夜片 | 免费日韩视频| 精品成人国产|