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

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

代寫CPT111、Java語言編程代做
代寫CPT111、Java語言編程代做

時間:2024-11-15  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



Computing
CPT111: Java Programming
Semester 1, 2024-25
Coursework 3: Programming Project – A Simple Quiz System
Read carefully — no dispensation will be given for lack of awareness of the rules
Assignment type This is a group programming assignment. You are required to work as a
group of 4 to 5 students, which will be allocated randomly.
(You should be able to find your group members’ information from
Learning Mall (LM), and should contact the instructors if there is any
problem.)
Weighing Total marks available: 100, accounting for 30% of overall module marks.
Release date 1pm CST Wednesday 6 November 2023
Due date 11:59pm CST Sunday 1 December 2024
Learning outcomes
(A) Understand and appreciate the principles of using object-oriented programming techniques
for the construction of professional robust, maintainable programs deployed to meet real
world business goals;
(B) Design, write, compile, test, debug and execute object-oriented program using an Integrated
Development Environment (IDE);
(C) Effectively develop object-oriented programs as a member or a leader of a software
development team with continuous development strategy supported by AI technology;
(D) Implement object-oriented programming to represent, display, and manipulate data while
mitigating security risks;
(E) Evaluate legal, social, environmental, ethical, diversity, inclusion, and intellectual property
issues related to object oriented program development;
(F) Apply knowledge of engineering management principles, commercial context, project and
change management in object-oriented program.
Submission platform Each group is required to submit an electronic copy of your assignment
via LM.
You are allowed ONE submission only. It is your responsibility to upload
the correct document.
Late submissions Penalties will apply for any work submitted after the due date unless you
have obtained a formal extension prior to the date for submission. The
penalty applied will be 5% of the available marks for the assignment for
each working day or part thereof that the assignment is late. The penalty
will be capped at five working days (120 hours) from the assignment
deadline. Work submitted after five working days will receive a grade of
zero.
Continued on next page
CPT111: Java Programming Semester 1, 2024-25
Submission
confirmation
We strongly advise you to double check that you have submitted the
correct document / final version of your answer.
Submission of incorrect file
If you have submitted the incorrect file, you should email the correct file
to the instructors prior to the deadline. Submitting the incorrect file can
result in failure.
Special consideration Requests for an extension due to illness, misadventure, or other
extenuating circumstances beyond your control will only be considered
via a formal application for special consideration through e-Bridge.
Report format ALL answers must be written in English.
The report must:
• be submitted as a .doc, .docx (do not submit PDF or Apple Pages)
• contain headings and subheadings
• have 3 cm margins
• use a legible font (e.g., Calibri, Arial or Times New Roman)
• be presented in 11 point font size with 1.5 line spacing
• be paginated
Plagiarism and
academic misconduct
It is assumed that you are thoroughly familiar with the policies of XJTLU
regarding academic misconduct and plagiarism. Ignorance of the rules is
not an acceptable defence against an allegation of academic misconduct.
There are no excuses for engaging in plagiarism. Assignment answers
will be checked for plagiarism. Impermissible similarities between student
answers (current and former) can be detected by academic integrity
software and by instructor, and will be referred to the School’s Examination
Officer for investigation. Penalties will follow those of the University’s
Academic Integrity Policy on e-Bridge and can ranged from capped marks
to expulsions from the university.
For use of Generative Artificial Intelligence (AI), see below.
Use of Generative
Artificial Intelligence
(AI)
Simple Editing Assistance
For this assessment task, you may use standard editing software but
not generative AI. You are permitted to use the full capabilities of the
standard editing software, such as Microsoft Office suite, Grammarly, and
Integrated Development Environments (IDEs) for coding. If the use of
generative AI such as ChatGPT is detected, it will be regarded as serious
academic misconduct and subject to the penalties mentioned above.
Tips • Read the questions carefully.
• Write succinctly, and avoid repetition.
• Avoid being overly descriptive.
• Remember to save/back up your work regularly. XJTLU provides all
students free access to XJTLU Box. It may be prudent to save your
work to your XJTLU account so that you can access it from multiple
devices in case you encounter hardware issues.
• You are encouraged to post administrative/procedural questions
about the assignment on the LM Q&A Forum. The instructors will
answer for the benefit of all students.
Coursework 3: Programming Project – A Simple Quiz System 2
CPT111: Java Programming Semester 1, 2024-25
Coursework 3: Programming Project – A Simple Quiz System
The purpose of this assignment is to design and develop an application that can be used to facilitate
educational quizzes, allowing users to select topics of interests, take quizzes related to those topics,
and view their quiz scores on a personal dashboard. The primary aim is to create a user-friendly
and interactive platform that enhances the learning experience through topic selection and question
assignment.
1 Functional requirements
As this is a programming assignment, not a software design one, here is a skeleton to guide you in
the creative part.
1.1 At startup
• The program should load data, such as user information, questions, etc., from selected files,
and store it in memory (using relevant variables and data structure).
– You may assume that all user information are stored in a comma-separated values (CSV)
file1
, as illustrated in resources user.csv, where the 1st, 2nd, and 3rd columns of the
file represent the user id, user name, and password of the user, respectively.
– You can assume that all questions are stored in some XML files, as illustrated in folder:
resources questionsBank. A Java class ReadQuestions has been provided to
you in the src folder demonstrating how the questions can be read from the XML files
into the memory, and the Javadoc of the classes used can be found under the folder
repositories javadoc xjtlu.cpt111.assignment.quiz.
Note: You need to add the library:
repositories xjtlu cpt111 xjtlu.cpt111.assignment.quiz
0.0.1 xjtlu.cpt111.assignment.quiz-0.0.1.jar
to the class path (of your IDE) first before running the ReadQuestion class.
• The program should:
– show information about data loaded.
– validate the questions read. That is, in our case, a question is valid if it
(i) falls into a topic (either new or an existing one)
(ii) has a question statement,
(iii) has more than one answer available for selection, and
(iv) has one-and-only-one answer.
– show a menu that present a list of interactions possible.
• Besides, you may need to add more questions (under different topics) to the question bank
yourself.
1CSV file: a text file format that uses commas to separate values, and newlines to separate records.
Coursework 3: Programming Project – A Simple Quiz System 3
CPT111: Java Programming Semester 1, 2024-25
1.2 Menu — General behaviour
The application should support, at least, the following functions.
• User registration and authentication
• Topic selection
– The topics available should be based on the input from the questions.
• Quiz taking
– You can decide the number of questions in a quiz. However, each quiz should contains
questions at different level of difficulties.
– The questions should be shown to the user one-by-one!
– The order of answers available for selection should be shuffled every time before a
question is shown to the user.
• The score of the quiz should show to the user immediately after the quiz has been finished
and the results should be saved into a score file
– You should design the structure (and format) of the score file on your own, and make
sure that you can read its content back when the program start!
• User dashboard for viewing quiz results of each topic and history of the previous 3 tests
attempted.
• Leaderboard for showing the names of the users with the highest score in each topic.
1.3 Technical requirements
The objective of this assignment is for you to program a simple quiz system so it should be interactive
in the form of showing text to the user and requesting their answer and data update through user
input as well as reading data from different file types. If you fail to do so, your submission will
automatically attract a penalty of 50%.
1.4 Concept requirements
Your code must feature and make use of the following elements.
• All your code must be divided in relevant/meaningful functions and classes.
• Declare/define and use variables with the appropriate data types and meaningful names.
• Input will always be converted into proper data type.
• The program should prevent crash in any situation, thus make sure you test your program
properly.
1.5 Constraints
Dependencies Using libraries or modules that are NOT covered in this course is strictly prohibited
and will result in zero (0) marks automatically in this assignment.
Internet connectivity The application is assumed to be run locally on a computer; hence no internet
connection is required.
Coursework 3: Programming Project – A Simple Quiz System 4
CPT111: Java Programming Semester 1, 2024-25
2 Important reminder
Documentation is also a critically important part of your software engineering. Your use of comment
(in Java source file) will be graded.
You must write the final version of the program totally on your own. Sophisticated plagiarism
detection system are in operation, and they are pretty good at catching copying! Re-read the policy
on the university home page, and note the University’s tougher policy this year regarding cheating.
Using libraries or modules that are NOT covered in this course is strictly prohibited and will
result in zero (0) marks automatically in this assignment.
Your programming style (how clearly and how well you speak a programming language, i.e.,
Java in this course) is what will be graded. Correct functioning of your program is necessary but
not sufficient; you must use the concepts covered in class and meet all requirements stated in this
assignment and as detailed in the marking rubrics (Section 4).
3 Submission requirements
Your assignment has to submit to Learning Mall (LM). You should submit the following:
A. A report (written using Microsoft Word) that includes the following items:
1. A cover sheet stating the student number of your team members.
2. A description of your project
3. Information and explanation of how you add, store and handle users’ data (including the
data structure that you used to store users’ data in memory), the algorithm that you used
to identify the user names in the leaderboard, how to handle problems that appear in the
questions (e.g., questions with more than one correct answers) and other parts of the program,
etc.
4. Tests performed to verify the correctness of the program.
5. Printouts/screen capture of your program’s execution and tests. (This can be incorporated
into Items 3 and 4 above)
6. Peer evaluation form (Section A). (This will be used to adjust the final mark of individual
students according to his/her contributions to the project.)
B. ALL Java source codes and resource files (e.g., images, questions and users files, etc.) that are
required to run the application.
You should compresses all files into a single “.zip” file before submission. You should NOT include
any files from the repositories folder or any files that are NOT relevant to the application into
the submission file. Failure to follow this requirement will result in mark deduction.
Coursework 3: Programming Project – A Simple Quiz System 5
CPT111: Java Programming Semester 1, 2024-25
4 Marking
Commenting and naming
convention (10 pts)
Everything is
appropriately
commented and
every variable is
appropriately named
A few comments
or variable names
are missing or
inappropriate
More than a few
comments are missing
or inappropriate but
more than 50% of
the elements are
commented; OR more
than a few variables
are inappropriate
There is less than 50%
commented OR more
than a few variables
are not properly
named
Prevent crashes (10 pts)
Program does not crash in any
situation
No program crash
Minor error –
program crash for
some very uncommon
case
Major error – program
crash in case of
unexpected type
of user input OR
program crashes
frequently
Crashes most of the
time (or always) when
tested OR circumvent
the requirement to
handle wrong kind of
user input
Appropriate data structure
and variables (10 pts)
Users and scoring
information is stored in
memory in a relevant way
and appropriately typed
variables
Users and scoring
information are
stored in memory in
a relevant way and
with appropriate data
types
Used more than
necessary variables
OR a few variables are
not typed properly
Does not use proper
data structure OR
data type to most
variable (more than
once)
NO data structure
(only simple data
types used) OR more
than one error
Loading data (10 pts)
Load data in memory and
format data in file properly
No issue found when
loading data into
memory
A small number of
data is not loaded (or
improperly) or other
minor error
One type of data
for all items is not
loaded or the file is
not formated properly
or other major error
Data is not loaded or
more than one major
error
Menu (10 pts)
Menu shows the required list
of options, and execute the
right the functionality based
on user input, and show
proper message to user in case
of any problem
The menu is shown
correctly and all
options can be
selected without any
error
Some options are not
shown to the user OR
some options cannot
be selected OR any
other minor error
Menu is not shown
“infinitely” until the
exit option is selected
OR any other major
error
There is no menu OR
it is shown only once
OR more than one
major error
Show question (10 pts)
Show the information about
a question and with answers
shuffled
The questions are
shown according to
the topic selected and
with different level
of difficulties and
answers shuffled
The questions are
shown according to
the topic selected and
with answers shuffled,
but most questions
are of the same level
of difficulties
The questions are
shown according to
the topic selected but
without shuffled the
answers or different
level of difficulties
The questions are
shown arbitrary
Scoring (10 pts)
Accumulate the score
correctly w.r.t. to users’
input
The score is updated
correctly in all cases
The score is updated
correctly in most cases
but not in all cases
The score is updated
correctly occasionally
The score is updated
incorrectly in most
cases or not update at
all
User dashboard (10 pts)
User dashboard shows the
user’s achievement in each
topic and history of the
previous 3 tests correctly
All information are
shown correctly,
especially after scores
update
One or two
information are
shown incorrectly,
or with some minor
error
Most information are
not shown correctly
OR with major error
Several major errors
OR no information is
shown on the user
dashboard
Leaderboard (10 pts)
Leaderboard shows the name
of user with the highest score
in each topic correctly
All information are
shown correctly,
especially after scores
update
One or two
information are
shown incorrectly,
or with some minor
error
Most information are
not shown correctly
OR with major error
Several major errors
OR no information
is shown on the
leaderboard
Save data (10 pts)
Save data to file with proper
formats
All data are saved in a
proper format
A small number of
data is not saved (or
improperly) or other
minor error
One type of data
for all items are not
saved OR file is not
formated properly OR
it overrides original
data OR other major
error
Several major errors
or there is no saved
information in the
new file
Criteria
Ratings
10 to > 8pts 8 to > 5pts 5 to > 0pts 0 pts
Coursework 3: Programming Project – A Simple Quiz System 6
CPT111: Java Programming Semester 1, 2024-25
A Peer evaluation form
Individual contribution for Group Programming Assignment
Name Student Id Task(s) Contribution
(%) Signature
Coursework 3: Programming Project – A Simple Quiz System 7

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






 

掃一掃在手機打開當(dāng)前頁
  • 上一篇:代寫CSC3150、Python/c++語言編程代做
  • 下一篇:IEMS5731代做、代寫java設(shè)計編程
  • 無相關(guān)信息
    合肥生活資訊

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

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

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

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

          9000px;">

                欧美日本一道本在线视频| 久久先锋资源网| 26uuu久久天堂性欧美| 国产永久精品大片wwwapp | 欧美系列亚洲系列| 亚洲免费看黄网站| 欧美日韩在线亚洲一区蜜芽| 日本欧美一区二区三区| 久久亚洲春色中文字幕久久久| 从欧美一区二区三区| 一区二区三区四区高清精品免费观看| 欧美在线影院一区二区| 美美哒免费高清在线观看视频一区二区| 久久亚洲综合色一区二区三区| 99精品久久只有精品| 日本免费在线视频不卡一不卡二| 国产欧美日韩视频在线观看| 在线中文字幕一区二区| 久久国产尿小便嘘嘘| 亚洲三级在线免费观看| 精品国产三级电影在线观看| 日本精品一区二区三区高清 | 一区二区三区资源| 精品国产乱码久久久久久蜜臀| 99视频精品全部免费在线| 亚洲成人动漫在线免费观看| 国产亚洲va综合人人澡精品| 欧美三级一区二区| 床上的激情91.| 蜜臀精品一区二区三区在线观看 | 国产欧美一区二区三区网站 | 欧美日韩亚洲综合一区| 高清日韩电视剧大全免费| 亚洲成人免费av| 中文字幕色av一区二区三区| 久久综合久久99| 91精品国产综合久久久久久| 一本色道久久综合狠狠躁的推荐| 国产精品亚洲午夜一区二区三区| 蜜臀av性久久久久蜜臀aⅴ| 亚洲综合久久久久| 亚洲天堂精品在线观看| 国产精品欧美一区喷水| 国产亚洲综合性久久久影院| 欧美α欧美αv大片| 日韩一区二区三区视频在线| 欧美午夜影院一区| 在线日韩国产精品| 在线免费观看一区| 色国产综合视频| 91丨porny丨国产| 91亚洲精品乱码久久久久久蜜桃| 国产成人鲁色资源国产91色综 | 91精品91久久久中77777| 91玉足脚交白嫩脚丫在线播放| 国产精品一区二区果冻传媒| 国产伦精品一区二区三区免费| 国内精品嫩模私拍在线| 开心九九激情九九欧美日韩精美视频电影 | 91偷拍与自偷拍精品| 成人免费的视频| 不卡视频在线看| 色婷婷综合久久久久中文一区二区| 色综合天天天天做夜夜夜夜做| 99re成人精品视频| 日本乱码高清不卡字幕| 欧美亚洲国产一卡| 日韩精品一区二区三区在线| 欧美精品一区二区久久婷婷| 国产亚洲精品aa| 中文字幕在线不卡一区二区三区| 亚洲最新视频在线播放| 午夜精品国产更新| 美女精品自拍一二三四| 高清国产一区二区| 欧美亚洲一区二区在线| 日韩一级黄色大片| 国产精品初高中害羞小美女文| 亚洲一区二区视频在线观看| 麻豆精品国产91久久久久久| 成人免费视频一区| 91麻豆精品国产91久久久使用方法| 欧美电视剧在线看免费| 国产精品美女久久久久aⅴ | 亚洲女女做受ⅹxx高潮| 日本aⅴ精品一区二区三区 | 欧美精品第一页| 国产亚洲一区二区三区四区| 一区二区三区在线播| 久久精品国产精品亚洲精品| av资源网一区| 欧美r级电影在线观看| 亚洲婷婷国产精品电影人久久| 日av在线不卡| 在线观看欧美日本| 久久久精品免费免费| 亚洲国产另类精品专区| 国产91精品一区二区| 91精品国产一区二区人妖| 亚洲图片另类小说| 国产成人av一区二区| 欧美妇女性影城| 亚洲色图一区二区| 国产精品一区在线观看乱码| 91麻豆精品国产| 亚洲影院在线观看| 95精品视频在线| 国产精品视频看| 美日韩一级片在线观看| 欧美午夜精品一区| 亚洲人被黑人高潮完整版| 国产高清无密码一区二区三区| 日韩一区二区三区视频在线观看| 亚洲一区二区三区三| 91社区在线播放| 国产精品初高中害羞小美女文| 国产宾馆实践打屁股91| 久久精品视频网| 国产一区二区精品久久99| 日韩精品一区二区三区四区视频| 日韩专区一卡二卡| 欧美猛男gaygay网站| 亚洲韩国精品一区| 欧美巨大另类极品videosbest| 亚洲一级二级三级在线免费观看| 91福利精品视频| 亚洲一区在线观看视频| 欧美午夜在线一二页| 亚洲午夜久久久久中文字幕久| 欧美影视一区二区三区| 亚洲午夜电影在线| 欧美日韩高清在线| 美国十次了思思久久精品导航| 欧美一区二区三区在线看| 日韩vs国产vs欧美| 日韩欧美国产精品| 韩国午夜理伦三级不卡影院| 久久久另类综合| www.一区二区| 亚洲综合图片区| 欧美一区欧美二区| 激情文学综合插| 国产精品欧美极品| 91成人网在线| 九九**精品视频免费播放| 欧美激情一区二区三区全黄| 成人av免费在线观看| 一区二区三区四区中文字幕| 欧美欧美欧美欧美首页| 九九在线精品视频| 亚洲欧美一区二区三区孕妇| 在线电影一区二区三区| 国产露脸91国语对白| 亚洲免费观看高清完整版在线| 欧美剧情电影在线观看完整版免费励志电影 | 国产传媒久久文化传媒| 一区二区三区美女视频| 日韩欧美在线影院| 成人国产精品视频| 亚洲电影在线播放| 欧美xingq一区二区| 91香蕉视频黄| 韩国三级电影一区二区| 亚洲黄色尤物视频| 精品少妇一区二区| 欧美私模裸体表演在线观看| 国产精品资源在线观看| 亚洲电影中文字幕在线观看| 久久久久久免费网| 欧美日韩一区二区三区四区| 国产毛片精品视频| 日韩高清不卡在线| 亚洲少妇30p| 国产日韩av一区| 日韩亚洲欧美在线观看| 91成人网在线| 99视频精品在线| 国产成人在线视频播放| 日本伊人精品一区二区三区观看方式| 中文字幕国产一区| 26uuuu精品一区二区| 欧美日韩高清在线| 91麻豆免费观看| 成人深夜视频在线观看| 韩国成人福利片在线播放| 亚洲18色成人| 亚洲女人的天堂| 国产精品对白交换视频| 久久久99精品久久| 欧美v亚洲v综合ⅴ国产v| 91麻豆精品国产91久久久资源速度 | 国精产品一区一区三区mba桃花| 亚洲国产一区二区视频| 一区二区在线观看免费视频播放 | 亚洲精品在线三区| 欧美一二三区在线| 日韩亚洲欧美中文三级| 欧美一级国产精品| 91精品国产乱码| 欧美精品aⅴ在线视频|