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

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

代做COMP2221、代寫Java程序設計
代做COMP2221、代寫Java程序設計

時間:2025-03-23  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



School of Computer Science: assessment brief
Module title Networks
Module code COMP2221
Assignment title Coursework
Assignment type
and description
Programming assignment in Java
Rationale
Design and develop client and multi-threaded server ap plications in Java to solve a specified problem
Guidance Detailed guidance provided later in this document
Weighting 30%
Submission dead line
2pm Monday 24th March
Submission
method Gradescope
Feedback provision
Marks and comments for the submitted code returned
via Gradescope
Learning outcomes
assessed
Design, implement and test network protocols and ap plications.
Module lead David Head
1
1. Assignment guidance
For this coursework, you will implement client and multi-threaded server applications
for a simple voting system in which the server is initialised with the options to vote
for, and clients can view the current number of votes for each option. Clients can also
vote for one of the options, which is then updated on the server.
This coursework specification is for school Unix machines only, including the remote
access feng-linux.leeds.ac.uk. We cannot guarantee it will work on any other
environment.
2. Assessment tasks
To get started, unarchive the file cwk.zip (you can do this from the command line
by typing unzip cwk.zip). You should then have a directory cwk with the following
structure:
cwk --- client --- Client.java
|
-- server --- Server.java
Empty .java files for the client and server have been provided. Do not change the
names of these files, as we will assume these file and class names when assessing.
You are free to add additional .java files to the client and server directories.
The requirements for the server application are as follows:
• Accept at least two options that can be voted for, each consisting of a single word,
as command line arguments when launched, e.g.
java Server rabbit squirrel duck
• The server should immediately quit with an error message for less than two options.
• Otherwise, it should run continuously.
• Use an Executor to manage a fixed thread-pool with 30 connections.
• If the client makes a vote for <option>, the vote count for <option> should be
increased by 1 (note all vote counts should initially be zero).
• However, if <option> does not exist, an error message should be returned.
• Following a request by a client, return the current state of the poll with one line
per option, where each line contains at least the option and the current count. See
below for an example of valid output.
• Create the file log.txt on the server directory and log every valid client request,
with one line per request, in the following format:
date|time|client IP address|request
where request is one of list or vote, i.e. you do not need to log the option for
vote operations. Do not add other rows (e.g. headers, blank lines) to the log file.
Note that you must create the log file, not overwrite or append an existing file. Any
log.txt file in your submission will be deleted at the start of the assessment.
The requirements for the client application are as follows:
• Accept one of the following commands as command line arguments, and perform
the stated task:
2
• list, which displays the current state of the poll from the server and displays
it to the user. Each option should be output on the same line as their current
vote count, with a different line for each option. See below for an example of
valid output.
• vote <option>, which requests that the server increases the vote count for
<option> by 1, and display the message returned by the server.
• Exits after completing each command.
Your server application should listen to the port number 7777. Both the client and the
server should run on the same host, i.e. with hostname localhost.
All communication between the client and server must use sockets – they cannot access
each other’s disk space directly. Your solution must use TCP, but otherwise you are
free to devise any communication format you wish, provided the requirements above
are met.
Neither the client nor the server should expect interaction from the user once they are
executed. In particular, instructions to the Client application must be via command
line arguments. In the case of an invalid input, your client application should quit with
a meaningful error message.
3. General guidance and study support
If you have any queries about this coursework, visit the Teams page for this module. If
your query is not resolved by previous answers, post a new message. Support will also
be available during the timetabled lab sessions.
You will need the material up to and including Lecture 11 to complete this coursework.
You may like to first develop Client.java and Server.java to provide minimal func tionality, following the examples covered in Lectures 7 and 8. You could then add
another class that handles the communication with a single client. This will make
it easier to implement the multi-threaded server using the Executor. Multi-threaded
servers were covered in Lectures 10 and 11. You will need to use input and output
streams; these were covered in Lecture 6.
Example session
First cd to cwk/server, compile, and launch the server with two options to vote for:
> java Server rabbit squirrel
Now in another tab or shell, cd to cwk/client and compile. If you execute the following
commands, the output should be something like that shown below.
>java Client list
’rabbit’ has 0 vote(s).
’squirrel’ has 0 vote(s).
> java Client vote rabbit
Incremented the number of votes for ’rabbit’.
>java Client list
’rabbit’ has 1 vote(s).
’squirrel’ has 0 vote(s).
3
> java Client vote duck
Cannot find option ’duck’.
Note your application does not need to follow exactly the same output as in this exam ple, as long as the requirements above are followed.
4. Assessment criteria and marking process
Your code will be checked using an autograder on Gradescope to test for functionality.
Staff will then inspect your code and allocate the marks as per the provided mark
scheme below. This includes the meaningful nature (or not) of error messages output
by your submission.
5. Submission requirements
Remove all extraneous files (e.g. *.class, any IDE-related files etc.). You should then
archive your submission as follows:
(a) cd to the cwk directory
(b) Type cd ..
(c) Type zip -r cwk.zip cwk
This creates the file cwk.zip with all of your files. Make sure you included the -r
option to zip, which archives all subdirectories recursively.
To check your submission follows the correct format, you should first submit using the
link Coursework: CHECK on Gradescope. Only once it passes all of the tests should
you then submit to the actual submission portal, Coursework: FINAL.
The autograder is set up to use the standard Ubuntu image (base image version 22.04)
with OpenJDK 21 installed as follows,
apt-get -y install openjdk-21-jdk
This version of Java most closely matches the RedHat machines in the Bragg teaching
cluster and on feng-linux.leeds.ac.uk.
The following sequence of steps will be performed when we assess your submission.
(a) Unzip the .zip file.
(b) cd to cwk/client directory and compile all Java files: javac *.java
(c) cd to cwk/server directory and do the same.
(d) If there is a log.txt file on the server directory, it will be deleted.
(e) To launch the server, cd to the cwk/server directory and type e.g. java Server
mouse rabbit
(f) To launch a client, cd to the cwk/client directory and type e.g. java Client
list
If your submission does not work when this sequence is followed, you will lose marks.
6. Academic misconduct and plagiarism
Academic integrity means engaging in good academic practice. This involves essential
academic skills, such as keeping track of where you find ideas and information and
referencing these accurately in your work.
4
By submitting this assignment you are confirming that the work is a true expression
of your own work and ideas and that you have given credit to others where their work
has contributed to yours.
There is a three-tier traffic light categorisation for using Gen AI in assessments. This
assessment is amber category: AI tools can be used in an assistive role. Use comments
in your code to declare any use of generative AI, making clear what tool was used and
to what extent.
Code similarity tools will be used to check for collusion, and online source code sites
will be checked.
7. Assessment/marking criteria grid
This coursework will be marked out of 30.
11 marks : Basic operation of the Server application, including use of thread
pool and log file output.
11 marks : Implementation of the list and vote commands.
4 marks : Meaningful error messages.
4 marks : Sensible code structure with good commenting.
Total: 30


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

掃一掃在手機打開當前頁
  • 上一篇:鯨魚借條全國客服電話-鯨魚借條24小時人工客服熱線
  • 下一篇:PALS0039代做、代寫Java/C++語言程序
  • 無相關信息
    合肥生活資訊

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

    關于我們 | 打賞支持 | 廣告服務 | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    99一区二区三区| 国产精品999视频| 日本香蕉视频在线观看| 欧美成人高潮一二区在线看| 久久久久久久久久久久久9999| 亚洲欧洲中文| av在线免费观看国产| 日本精品二区| 国产精品久久国产| 激情小说网站亚洲综合网| 精品国产一区久久久| 国产精品免费在线免费| 国产日本欧美一区二区三区| 美女一区视频| 欧美激情综合色| 97人人模人人爽人人喊中文字| 91超碰中文字幕久久精品| 日韩欧美精品一区二区三区经典| 免费拍拍拍网站| 亚洲在线视频一区二区| 亚洲精品欧美精品| 日韩在线视频观看正片免费网站| 午夜精品一区二区三区在线| 久久成人这里只有精品| 99久久免费国| 日韩av不卡电影| 久久精品国产2020观看福利| 国产精品日韩一区| 68精品国产免费久久久久久婷婷| 中日韩在线视频| 91超碰中文字幕久久精品| 春色成人在线视频| 国产成人精品久久二区二区| 日本视频精品一区| 久久久一二三四| 日本一区高清在线视频| 日韩在线一区二区三区免费视频| 欧美中文字幕在线观看| 国产精品久久激情| 成人亚洲综合色就1024| 亚洲www视频| 日韩网站免费观看| 国产欧美日韩中文字幕在线| 亚洲精品国产一区| 日韩中文字幕第一页| 激情五月亚洲色图| 毛片精品免费在线观看| 成人动漫在线视频| 日本中文字幕在线视频观看| 色老头一区二区三区在线观看| 青青青青草视频| 久久中文字幕国产| 9191国产视频| 在线观看日韩羞羞视频| 国产精品久久久久久久久免费看| 色一情一乱一伦一区二区三区| 久久久久网址| 国产欧美一区二区视频| 亚洲v国产v在线观看| 久久精品小视频| 国产精品亚洲一区二区三区| 日韩av成人在线观看| 国产精品第七影院| 成人精品小视频| 青草网在线观看| 色妞在线综合亚洲欧美| 国产精品视频公开费视频| 国产精品手机在线| 日本精品免费在线观看| 欧美一区激情视频在线观看 | 久久久久天天天天| 国产精品三级久久久久久电影 | 国产成人精品久久二区二区| 久久精品小视频| 一本色道久久88亚洲精品综合| 国产一区不卡在线观看| 亚洲永久在线观看| 欧美成人久久久| 91av在线播放| 国产精品视频导航| 日韩在线视频免费观看高清中文| 日本最新一区二区三区视频观看 | 97国产在线视频| 欧美一二三区| 亚洲精品一区二区三| 国产精品久久77777| 久久精品.com| 国产视频一区二区视频| 日本精品视频在线播放| 亚洲欧美日韩在线综合| 精品自拍视频在线观看| 国产精品少妇在线视频| 国产av天堂无码一区二区三区| 高清一区二区三区视频| 国产一区视频免费观看| 99热在线播放| 另类专区欧美制服同性| 青春草国产视频| 久久久久亚洲精品国产| 无码少妇一区二区三区芒果| 久久免费看av| 人妻无码视频一区二区三区| 国产精品香蕉av| 亚洲综合色av| 久久久亚洲福利精品午夜| 欧美激情亚洲自拍| 成人国产精品久久久| 国产精品户外野外| 久久99精品久久久久久秒播放器| 国产成人涩涩涩视频在线观看| 国产精品香蕉视屏| 久热这里只精品99re8久| 精品视频一区二区| 欧美一级片久久久久久久| www国产黄色| 久久天堂国产精品| 超碰97国产在线| 黄黄视频在线观看| 欧美一级电影久久| 欧美中文字幕在线观看视频| 欧美重口乱码一区二区| 青青草免费在线视频观看| 日本国产在线播放| 婷婷亚洲婷婷综合色香五月| 亚洲高清视频一区二区| 亚洲va久久久噜噜噜久久狠狠 | 国产成人精品一区二区三区福利 | 久久精品小视频| 国产精品日韩一区二区三区| 国产精品免费看一区二区三区| 国产精品免费福利| 九九精品在线视频| 亚洲一二区在线| 亚洲a一级视频| 日本一区二区三区视频在线观看| 日本久久中文字幕| 欧美亚洲视频一区二区| 黄色99视频| 国产欧美日韩精品专区| 成人精品一区二区三区| 久色视频在线播放| 久久久国产影院| 国产精品成人aaaaa网站| 久久成人av网站| 亚洲高潮无码久久| 日本公妇乱淫免费视频一区三区| 欧美少妇一区二区三区| 国产中文欧美精品| 99久久国产宗和精品1上映| 国产福利一区视频| 久久久极品av| 在线观看欧美亚洲| 日韩av电影中文字幕| 精品日产一区2区三区黄免费 | 国产精品丝袜高跟| 超在线视频97| 亚洲欧洲一区二区福利| 热久久免费国产视频| 国产专区一区二区| 91久久久亚洲精品| www国产91| 制服诱惑一区| 日韩xxxx视频| 国产在线精品自拍| 久久久在线观看| 国产精品成人观看视频国产奇米| 亚洲爆乳无码专区| 国内精品久久久久久久| 免费久久99精品国产自| 国产欧美欧洲| www.日本久久久久com.| 精品国产一区二区三区久久久狼| 97免费中文视频在线观看| 国产精品69av| 欧美精品一区三区在线观看| 国产aaa精品| 日韩在线视频一区| 国产免费一区二区三区四在线播放 | 欧美在线一区视频| 婷婷久久五月天| 精品国产一区二区三区日日嗨 | 91av一区二区三区| 不卡中文字幕在线| 国产日韩欧美中文| 国产网站免费在线观看| 极品粉嫩国产18尤物| 欧美性大战久久久久xxx| 午夜精品久久久久久久99黑人 | 亚洲91精品在线亚洲91精品在线| 九九热精品在线| 欧美激情一二三| 在线视频一二三区| 亚洲一区免费看| 亚洲精品国产一区| 无码中文字幕色专区| 亚洲精品欧美精品| 日韩在线综合网| 日韩免费观看av| 欧美日韩亚洲一区二区三区在线观看| 欧美激情第一页在线观看|