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

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

CS-665程序代做、代寫Designs and Patterns

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



CS-665: Software Designs and Patterns
Class Project
This document should not be disseminated outside the purview of its intended purpose.
You Choose (20 points)
GitHub Project Template Link
https://github.com/edorsini/cs-665-project-template
Application Description
One of the key requirements for this course is the final project, which counts for 20% of the
grade and must be completed individually. This project presents an opportunity for you to
demonstrate your software design skills by solving a problem that interests you and presents a
suitable challenge.
During the course, we have covered a variety of design patterns, including the Strategy, Factory
Method, Abstract Factory, Singleton, Prototype, Command, Observer, State, Template, Facade,
Decorator, Composite, Adapter, Proxy, Iterator, and Mediator patterns. However, there are many
additional design patterns that can be used in Java programming, as listed on the website Java
Design Patterns.
Boston University Metropolitan College
The final project provides you with the opportunity to showcase your understanding and use of
design patterns in solving a real-world problem.
Your main objective for the class project is to expand your knowledge of design patterns. You
should choose a design pattern that was not covered in our class, study it on your own, develop
a unique use case scenario for it, implement the pattern in your preferred programming
language, and create a presentation that showcases the design pattern and your scenario.
It is highly recommended to utilize a combination of design patterns in your project, as this
mirrors the way design patterns are utilized in real-world software projects.
To get started, you should review the list of design patterns and select one that you find
interesting. Some examples of important patterns that were not covered in depth in our class
include the Bridge, Builder, Callback, Delegation, and Thread Pool patterns.
Please note that your project idea should not be taken from existing books or websites and
should be a unique project based on your own original ideas.
Also note that the implementation of a graphical user interface is not necessary. To demonstrate
the functionality of your implementation, you should implement unit tests.
Tasks
Implementation Description (2 points)
In your implementation of this application, it is important to consider software design principles.
This section outlines the main software design concepts and their goals.
For example:
● Explain the level of flexibility in your implementation, including how new object types can
be easily added or removed in the future.
● Discuss the simplicity and understandability of your implementation, ensuring that it is
easy for others to read and maintain.
● Describe how you have avoided duplicated code and why it is important.
● If applicable, mention any design patterns you have used and explain why they were
chosen.
Boston University Metropolitan College
Ed Orsini | edorsini@bu.edu
We recommend that you write this description in a README.md file using MarkDown format
(https://spec.commonmark.org/current/) and add the file to the root folder of your project. This
should be done after completing the other tasks in this assignment.
UML Class Diagram (5 points)
Develop a class model for your application, consisting of 5 to 8 of the most crucial classes, that
encompasses the features of the described use case scenario. Only include essential and
non-trivial methods.
Java Solution (13 points)
Utilize GitHub Classroom to create a private repository for your assignment.
● Commit your code to the private Github repository created for this assignment.
● Follow the project templates given to implement your project.
● Submit a zip file that includes the implementation package, with a README.md file
explaining how to compile and run the implementation. Ensure that the zip file includes
all subdirectories of the project, excluding any binary files. The zip file should not exceed
10MB in size and should only contain source files, not generated binaries.
● Provide clear and thorough documentation within the code. It is best to write the
documentation as the code is being implemented, rather than postponing it for later.
● Adhere to the Google Java Style Guide
(https://google.github.io/styleguide/javaguide.html).
● Ensure that the solution can be compiled using the mvn compile command.
● Implement JUnit tests to verify the functionality of the implementation. A minimum of
3-5 JUnit tests required.
The example below is found in the project template as an example in the following file:
Boston University Metropolitan College
Ed Orsini | edorsini@bu.edu
Using GitHub
Use GitHub for all your assignments.
1. Sign up or log in to your GitHub account.
2. Click the "New repository" button, located on your GitHub dashboard.
3. Enter a name for your repository, and provide an optional description.
4. Select whether to initialize the repository with a README file, .gitignore file, or license.
5. Click the "Create repository" button.
Your new repository will be created, and you can start uploading your code and other files. If you
have an existing project, you can use the "Import code" feature to upload your files to the new
repository. You can then use the files that are provided here as the skeleton of your project:
https://github.com/edorsini/cs-665-project-template
Submission
When you have completed your assignment:
1. Ensure that you have the latest version of your code saved on your computer or
downloaded from GitHub.
2. Compile all results from the three tasks into a single document, such as a PDF file for
the UML diagrams.
3. Zip all of your code and the document together into one .zip file. Remember to remove
any binary files, which are usually found in the bin/ or target/ folders, as they can
significantly increase the size of your zip file.
Boston University Metropolitan College
Ed Orsini | edorsini@bu.edu
4. Verify that you have correctly uploaded the zip file. To do this, download the file, unzip it,
and confirm that the contents are correct and that the file is not damaged. Please note
that we will only be able to evaluate the zip file uploaded to the blackboard, and any
incorrect or damaged files cannot be evaluated.
After completing your assignment, you can download a ZIP file of your repository using the
green download button on GitHub. Make sure to upload this ZIP file to Blackboard. It's important
to note that we will be grading both the final ZIP file uploaded to Blackboard and the history of
your GitHub repository. Both versions should match. The purpose of having a ZIP file on
Blackboard is to provide an archived copy of your assignment.
Grading
Your solution should be a standalone program that can be compiled and executed following the
instructions provided in the README.md file. It's recommended to utilize the provided project
template and utilize build tools like Maven to integrate your implementation. If your program
satisfies all the required functionality, compiles, and runs successfully, you will receive full
points. Grading will be based on the following evaluation criteria, and points will be deducted for
each task accordingly.
● Your UML diagram will be missing important components such as Interfaces/Classes,
which will result in a 5% reduction for each missing component.
● To compile your solution, we will use the "mvn clean compile" command after
downloading, unzipping, and running the command on your project. Your code must
compile using Java JDK 1.8 or else it will result in a 10% grade deduction for the
implementation task.
● If your code includes functionality bugs, a 10% deduction will be applied for each bug
found.
● Your submission should include a README.md file that clearly explains your conceptual
solution, the steps to compile and execute the code. Failure to include such a file or not
providing all requested information will result in a 10% reduction of points.
● Your program must implement the requested functionalities, and if it does not, a 10%
deduction will be applied for each missing functionality.
● We will use jplag (https://github.com/jplag/jplag) to programmatically check for
plagiarism. Any solutions that are found to be an exact duplicate of someone else's will
not be accepted, and we will contact you regarding the issue.
Boston University Metropolitan College
Ed Orsini | edorsini@bu.edu
Late Work
Late work will not be accepted. We understand that exceptions can be made in extreme
circumstances with proper documentation. For instance, if you provide a doctor/dentist note that
verifies you were unable to meet the deadline due to illness, an extension may be granted.
Academic Misconduct in Programming
In a programming course like ours, it's crucial to understand the line between acceptable
collaboration and academic misconduct. Our policy on collaboration and communication with
classmates is straightforward: you may not share or receive code through any means, including
visually, electronically, verbally, or otherwise. Any other forms of collaboration are permitted.
When it comes to communication with individuals who are not classmates, TAs, or the instructor,
it is strictly prohibited. This includes posting questions or seeking assistance on programming
forums such as StackOverflow.
When using external resources such as the web or Google, a "two-line rule" applies. You may
search for information and access any web pages you need, but you may not incorporate more
than two lines of code from an external source into your assignment in any form. Even if you
alter the code, such as by changing variable names, it remains a violation to use more than two
lines of code obtained from an external source.
It is important to properly cite your sources by adding a comment to your code that includes the
URL(s) consulted during the construction of your solution. This not only helps to ensure
academic integrity but also aids in later recollection of your thought process.
Boston University Metropolitan College
請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:COMP24011代做、Python程序語言代寫
  • 下一篇:COMP639代寫、c/c++,Python程序代做
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    欧美一区深夜视频| 国产精品-区区久久久狼| 69久久夜色精品国产69| 欧美猛交免费看| 黄色一级视频片| 精品国产一区二区三区久久狼黑人 | 日韩美女免费视频| 91九色国产社区在线观看| 精品久久久久久综合日本| 欧美精品久久久久久久自慰| 久久久久久免费精品| 日韩福利二区| 久久精品视频16| 日本视频一区在线观看| 91精品国产99| 午夜精品久久久久久久久久久久久| 成人久久久久久| 一本二本三本亚洲码| 国产精品一区二区3区| 久久91亚洲精品中文字幕奶水| 韩国成人一区| 免费不卡在线观看av| 国产日韩一区二区三区| 国产aⅴ精品一区二区三区黄| 国产女同一区二区| 欧美激情视频在线| 99久re热视频这里只有精品6| 一区二区精品在线观看| 97精品国产97久久久久久| 在线亚洲美日韩| 91免费视频网站在线观看| 亚洲va久久久噜噜噜久久狠狠| 91精品免费视频| 日本国产欧美一区二区三区| 俺去亚洲欧洲欧美日韩| 国内精品在线一区| 九九精品在线观看| 91精品黄色| 欧美一区二三区| 欧美精品免费在线| 99se婷婷在线视频观看| 日本精品视频一区| 国产精品美腿一区在线看| 国产日产欧美视频| 亚洲专区在线视频| 国产成人一区二区在线| 欧美日韩亚洲第一| 久久国产精品久久国产精品| 97精品伊人久久久大香线蕉| 日产精品久久久一区二区福利 | 欧美精品久久久久久久免费| 久久夜色精品国产欧美乱| 国产精品一二区| 午夜啪啪福利视频| 国产成人小视频在线观看| 国产午夜福利在线播放| 亚洲欧美国产精品桃花| 国产二区视频在线| 黄色小视频大全| 亚洲中文字幕无码专区| 视频一区视频二区国产精品| 国产特级黄色大片| 欧美一级片免费在线| 国产精品久久久久aaaa九色| 91免费福利视频| 欧美日韩国产综合在线| 亚洲自拍欧美另类| 国产精品无码专区在线观看| 超碰97在线播放| 欧美精品一区二区三区在线四季| 一本久道久久综合| 国产精品老女人精品视频| 国产精品一 二 三| 欧美日韩成人一区二区三区| 亚洲一区二区三区毛片| 国产精品日韩欧美一区二区三区| 91精品视频在线看| 国产综合欧美在线看| 日本在线观看一区| 欧美激情视频一区二区三区不卡 | 国产成人精品免费视频大全最热| 免费国产成人看片在线| 熟女少妇精品一区二区| 美日韩精品免费观看视频| 久久黄色免费看| 国产日韩中文字幕在线| 欧美综合一区第一页| 一本久道综合色婷婷五月| 国产精品美女久久久久久免费| 久久乐国产精品| 成人毛片网站| 国产欧美一区二区三区在线| 人妻久久久一区二区三区| 亚洲永久激情精品| 久久成人亚洲精品| 久久久极品av| 久久久久久久久久久久久久久久久久av| 国产精品午夜av在线| 黄色a级片免费看| 欧洲在线视频一区| 午夜精品久久久久久久无码| 在线观看欧美亚洲| 欧美成人亚洲成人| 国产精品三级一区二区| 日韩有码在线播放| 国产av天堂无码一区二区三区| 91精品视频一区| 超碰97网站| 成人免费视频a| 国产男女无遮挡| 国产在线精品一区免费香蕉| 激情五月亚洲色图| 欧美 日韩 国产 高清| 日本人成精品视频在线| 懂色中文一区二区三区在线视频| 久久99精品久久久久久琪琪| 国产精品精品一区二区三区午夜版| 日韩中文字幕在线视频播放 | 亚洲精品中文综合第一页| 欧美xxxx14xxxxx性爽| 国产aaa精品| 在线免费一区| 亚洲一区二区在线免费观看| 亚洲精品日韩成人| 亚洲aⅴ日韩av电影在线观看| 亚洲女人毛片| 视频一区二区在线观看| 亚洲高清在线观看一区| 亚洲国产欧美一区二区三区不卡| 亚洲专区国产精品| 午夜精品一区二区三区视频免费看| 亚洲欧美成人一区| 色999日韩自偷自拍美女| 三区精品视频| 欧美在线www| 黄网站欧美内射| 国产综合动作在线观看| 国产女主播一区二区三区| 超碰97国产在线| 91国产丝袜在线放| 九色在线视频观看| 久久久国产影院| 久久手机免费视频| 精品中文字幕在线观看| 亚洲在线一区二区| 视频一区二区视频| 欧洲黄色一级视频| 蜜桃久久精品乱码一区二区| 国产美女久久久| 97精品国产97久久久久久春色| 国产精品99久久免费黑人人妻| 久久久999免费视频| 久久精品青青大伊人av| 国产av第一区| 日本精品性网站在线观看| 欧美日韩在线观看一区| 精品少妇一区二区三区在线| 国产青草视频在线观看| 99久re热视频精品98| 久久精品国产第一区二区三区最新章节| 久久九九全国免费精品观看| 免费99精品国产自在在线| 性色av香蕉一区二区| 欧美日韩精品综合| 浮妇高潮喷白浆视频| 久久久久国产精品熟女影院| 久久精品国产精品亚洲| 久久69精品久久久久久久电影好| 亚洲a在线观看| 欧美成人综合一区| 超碰成人在线免费观看| 久久久久久久国产精品视频| 国产精品久久久久久超碰| 亚洲一区美女视频在线观看免费| 欧美最猛性xxxxx亚洲精品| 国产精品自拍片| 久久er99热精品一区二区三区| 欧美另类第一页| 五月天色婷婷综合| 精品日本一区二区| 91精品国产91久久久久久不卡| 国产精品视频一区二区高潮| 亚洲一区二区久久久久久久| 精品人妻人人做人人爽| 91精品国产91久久久久福利| 国产精品久久久久久久久久| 日韩中文字幕一区| 国内久久久精品| 久久久久人妻精品一区三寸| 中文网丁香综合网| 欧美激情一区二区三区在线视频| 99久久精品久久久久久ai换脸 | 国产一区二区在线观看免费播放| 久久天堂国产精品| 久久国产精品免费视频| 日韩欧美不卡在线| 99精彩视频在线观看免费| 国产精品国产三级国产专区53 | 99国产精品久久久久老师| 国产精品视频资源|