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

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

        時間:2025-03-23  來源:合肥網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

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

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

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

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

        主站蜘蛛池模板: 中文乱码字幕高清一区二区| 国产一区二区三区影院| 色狠狠一区二区三区香蕉| 午夜一区二区免费视频| 欧洲精品无码一区二区三区在线播放| 中文字幕精品一区二区| 少妇无码一区二区三区免费| 欧洲精品一区二区三区在线观看 | 久久久国产精品亚洲一区| 美女福利视频一区二区| 无码丰满熟妇一区二区| 97人妻无码一区二区精品免费| 99国产精品一区二区| 国产色精品vr一区区三区| 国产一国产一区秋霞在线观看| 精品人妻无码一区二区三区蜜桃一| 无码囯产精品一区二区免费 | 亚洲爆乳精品无码一区二区| 一区二区三区在线免费看| 无码国产精品一区二区免费3p | 国产在线视频一区| 久久久久久一区国产精品| 精品一区二区三区四区在线| 一本色道久久综合一区| 亚洲一区二区视频在线观看| 区三区激情福利综合中文字幕在线一区| 无码aⅴ精品一区二区三区| 日韩一区二区三区电影在线观看| 在线视频一区二区三区四区| 日韩一区二区三区不卡视频| chinese国产一区二区| 国产免费av一区二区三区| 免费一区二区无码视频在线播放| 亚洲免费视频一区二区三区| 大伊香蕉精品一区视频在线| 一区二区精品在线| 国精产品一区一区三区有限公司| 另类ts人妖一区二区三区| 日本一区二区三区在线视频| 国产一区二区在线视频| 男插女高潮一区二区|