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

        COMP2005J代寫、代做Python,Java程序設計

        時間:2023-11-23  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯


        COMP2005J Object Oriented Programming

        Course project description

        You need to implement a Car rental system in java using object-oriented programming. You

        need to implement your code by using at least 3 of the main pillars of Object oriented

        programming (Encapsulation, Inheritance, Polymorphism). This means that you need

        to use Interfaces, Nested Classes, Class hierarchy and other features related to

        these concepts as necessary.

        * Encapsulation: By creating classes for Car, Reservation, User, and Admin and

        wrapping data and methods that operate on the data into a single unit.

        * Inheritance: By using subclasses for different Car Categories types ( SUV,

        SEDAN, Sports) which will inherit properties from a parent Car class.

        * Polymorphism: By utilising interface methods that can be implemented differently

        for user and admin, allowing different behaviours for the two user types.

        System Entry:

        Upon starting the application, users are greeted with a main menu (Command line

        Interface):

        ● User: This option directs the user to the user panel.

        ● Admin: This option directs the user to the admin panel.

        ● Exit: This option allows the user to exit the application.

        User Panel:

        In the user panel, users can:

        ● See Available Cars for Rent: Users can view the list of cars available for

        rent. If there are no cars available, a message indicating the unavailability is

        displayed.

        ● Rent a Car: Users can choose to rent a car.

        ● See Your Reservations: Users can view their car rental reservations.

        ● Return a Car: Users can return a rented car.

        ● Exit: Users can go back to the main menu.

        Admin Panel:

        In the admin panel, administrators can:

        ● Add a Car: Administrators can add a new car to the inventory.

        ● See All Cars: Administrators can view the entire list of cars in the inventory.

        ● Delete a Car: Administrators can remove a car from the inventory.

        ● Exit: Administrators can go back to the main menu.

        Car Configurations:

        * You do not need to use a database to store the inventory. You only need to keep

        track of the inventory during the runtime of the code and the inventory should reset

        when you end the execution.

        ● Car Categories and Rates:

        ● SEDAN: Hourly rate RMB**, Daily rate RMB350, Weekly rate RMB**0

        ● SUV: Hourly rate RMB120, Daily rate RMB450, Weekly rate RMB1100

        ● SPORTS: Hourly rate RMB150, Daily rate RMB550, Weekly rate

        RMB1400

        Each car has attributes:

        ● Category (SEDAN, SUV, SPORTS)

        ● Model ("BMW", "Porsche", "Audi")

        ● Quantity

        Model Rate Adjustments:

        ● Rates are subject to adjustments based on the car's model:

        ● BMW: 20% of the total bill.

        ● Porsche: 30% of the total bill

        ● Audi: 10% of the total bill

        should be added to the bill, if the user chooses the particular model.

        Tasks:

        1. Implement fully functional User Panel as stated above. Upon renting a car,

        the user should be able to see the final bill. Also, the user should see the

        billed amount while seeing the reservation. After renting or returning the car,

        the available cars to rent should be updated. For instance, see the following:

        Available cars for rent should be updated as the following:

        2. Implement fully-functional Admin Panel as stated above. Admin should be

        able to add/delete a car from the inventory. It should impact the available cars

        to rent.

        See the current Inventory after adding new car:

        See the available cars to rent in the user panel:

        The available cars to rent for Audi, Sedan becomes 13. Because the user

        rented 7 cars of the same model before. So, the inventory has 20 Audi,

        Sedan, but only 13 of them are available for rent.

        Test Scenarios:

        You should record your screen when running the following tests and submit a

        video inside the zip file. The video duration should be less than two minutes,

        and you should explain by talking to the microphone during the recording.

        ● The Admin adds 10 BMWs (1 Sport, 5 Sedan, 4 SUVs).

        ● The customer tries to rent 4 SUVs of the model "BMW" for one day and

        will be billed considering both the SUV daily rate and the BMW model

        adjustment.

        ● The customer tries to rent 2 SUVs and receives an error: “We do not

        have enough cars”.

        ● The customer returns 1 BMW SUV and receives a promt saying

        (Returned Sussecfully!).

        ● The Customer checks the reservations and now it should only be able

        to see 3 BMW SUVs in the reservation list.

        Bonus Point (10% Extra):

        To get the extra 10% the rental system should implement a Graphical User Interface (GUI) to

        allow the users to interact with it. Here is a Tutorial and a video guide on creating GUIs in

        IntelliJ Swing.

        Grade component

        Project submission (40% of full grade).

        Submission deadline

        The submission deadline is Thursday, November 30, 2023, at 23:59 hours (Beijing time).

        Submission guidelines

        Your submission should include:

        ● Source-code of your implementation application, implemented in java. You should

        submit your code as a project and not as a single file. For this you should export

        your project as a zip file from the IDE (See how to do it on IntelliJ).

        ● The screen recording of test scenarios (less than 2 minutes). If you have a GUI you

        should also record the test scenarios using that.

        ● A detailed configuration report (in PDF format) describing your implementation of the

        course project. This report should describe in detail how you have implemented the

        project, and the various challenges that you faced during the same. This manual

        should describe the step-by-step procedure of developing your code maximum 7

        pages including cover and references.

        Please upload a single zipped folder (in .zip format) containing all these files arranged in a

        systematic manner.

        The naming convention for each of the projects is:

        ucdconnectid_pM.zip

        where ucdconnectid is your UCD Connect ID, M is the project number, and p and zip are

        in lower-case characters.

        For example, a student John Smith with the UCD Connect ID 12345678 would submit the

        first project as 12345678_p1.zip.

        Grading scheme

        The penalties for late submission are as follows:

        ● Less than 15 minutes past the deadline - no penalty.

        ● Greater than 15 minutes and less than 2 hours past the deadline - loss of 25% of the

        final mark.

        ● Greater than 2 hours past the deadline - loss of 50% of the final mark

        The submission will be graded based on the following criteria:

        ● Correctness: The software should perform as described in the final report.

        ● Robustness: The software should operate reliably and be not subject to frequent

        abnormal terminations.

        ● Report Quality: The associated configuration report should be organised and

        well-structured and.

        ● Use of Object Oriented Programming Concepts (Encapsulation, Inheritance,

        Polymorphism).

        ● Video presentation: You should explain steps of the test during the recording.

        If you have any queries about the Project details:

        ** Create a new topic in the Brightspace Discussion Forum under the Project Q&A.

        2- In case of personal circumstances Contact your TA (abdul.wadud@ucdconnect.ie)

        3- Do not leave your questions for the days closer to the deadline as we might not be able to

        answer all the questions in a short time.

         

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

         

        掃一掃在手機打開當前頁
      1. 上一篇:TELE9754代做、代寫Python,c++編程
      2. 下一篇:代寫COMP228、代做Python,Java編程
      3. 無相關信息
        合肥生活資訊

        合肥圖文信息
        出評 開團工具
        出評 開團工具
        挖掘機濾芯提升發動機性能
        挖掘機濾芯提升發動機性能
        戴納斯帝壁掛爐全國售后服務電話24小時官網400(全國服務熱線)
        戴納斯帝壁掛爐全國售后服務電話24小時官網
        菲斯曼壁掛爐全國統一400售后維修服務電話24小時服務熱線
        菲斯曼壁掛爐全國統一400售后維修服務電話2
        美的熱水器售后服務技術咨詢電話全國24小時客服熱線
        美的熱水器售后服務技術咨詢電話全國24小時
        海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
        海信羅馬假日洗衣機亮相AWE 復古美學與現代
        合肥機場巴士4號線
        合肥機場巴士4號線
        合肥機場巴士3號線
        合肥機場巴士3號線
      4. 上海廠房出租 短信驗證碼 酒店vi設計

        主站蜘蛛池模板: 欧洲无码一区二区三区在线观看 | 精彩视频一区二区| 精品无码综合一区二区三区| 精品一区二区三区AV天堂| 肉色超薄丝袜脚交一区二区| 成人在线一区二区| 日韩美女在线观看一区| 日韩最新视频一区二区三| 亚洲一区二区三区香蕉| 国产91精品一区二区麻豆亚洲| 无码中文人妻在线一区二区三区| 久久久精品人妻一区二区三区蜜桃 | 一区二区三区在线观看| 无码一区二区三区在线观看| 亚洲一区无码精品色| 高清一区高清二区视频| 国产三级一区二区三区| 国产精品福利一区| 日韩精品中文字幕视频一区| 国精产品一区一区三区有限在线| 亚洲视频一区二区三区四区| 久久无码AV一区二区三区| 久久99精品一区二区三区| 亚洲V无码一区二区三区四区观看 亚洲爆乳精品无码一区二区三区 亚洲爆乳无码一区二区三区 | 精品亚洲一区二区三区在线观看| 精品视频一区二区| 一区二区三区无码高清| 区三区激情福利综合中文字幕在线一区| 国产一区二区三区在线免费| 在线观看精品一区| 国产激情一区二区三区在线观看| 大帝AV在线一区二区三区| 国产MD视频一区二区三区| 天天爽夜夜爽人人爽一区二区| 一区二区免费电影| 亚洲国产精品乱码一区二区| 精品人妻码一区二区三区| 国产精品成人免费一区二区| 精品中文字幕一区二区三区四区| 精品人妻少妇一区二区三区在线 | 亚洲AV网一区二区三区|