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

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

CHC4008代做、代寫Python設計編程

時間:2024-04-05  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Web Application Development: Coursework
Allocation
This coursework is worth 100% of the marks for module CHC5054.
You will also need skills from the following modules:
●CHC4008 (Python Programming)
●CHC4007 (Design reporting)
●CHC5049 (Database design)
●CHC5226 (Secure implementation)
Specification
Your task is to develop and test the full stack for a simple web-based Learning Management System designed to facilitate the management, delivery, and tracking of educational courses.
instructors can upload Lectures, submit assessments, and mark student assignments.
students can enrol, view course content, and submit assignments, progress tracking, and discussion forums.
Administrator creates and manage accounts for instructors, students, courses and other admins
The following is the basic functionality to implement:
●Home Page: On visiting the first page of the site, user should be redirected to login page if not logged in, otherwise he should be able to see the course list for the student, upload list for instructor.
●- Admins should have access to user, courses, lectures management (creation, editing, deletion).
●- Instructors should see their courses, student lists, and lecture management options.
●- Students should see their enrolled courses, grades, and upcoming assignments.
●It is up to admin to create/edit/delete and assign a course for only one instructor.
●An “Add lecture” button when an instructor wants to create a lecture (name, description) and another “Add file” button to upload add one resource (word/pdf file).
●Students can look over the offered courses and request to be enrolled in those they would like to take enrol students in courses
●Instructors and students can communicate with each other through messaging
●Notifications: Receive alerts for new announcements, deadlines.
●Search Functionality: Search for courses, lecture, and other users within the system.


Admin:
Course Enrollment: Assign a course to an instructor (or instructors), enrol students in courses
Instructor:

Course management: create course content, including lectures, and assignments, an instructor can only edit his own courses.
Assignment Management: Create and manage assignments (name, files, deadline) all students enrolled in the same course will be assigned automatically
Grading and Feedback: access students’ submission, grade and provide feedback 
Student:

Course Enrollment: Look over the offered courses and request to be enrolled in those they would like to take (only administrators can decide whether to accept or enroll a student).
Content Access: Access enrolled courses, lectures, assignments.
Submission: Submit assignments, within specified deadlines.
Feedback and Grades: Receive feedback and grades on assignments and assignments.
The marks available for each of these areas of functionality are divided based on the sections of the coursework, as described below. Simply writing code to meet the specification by any means will not earn full marks.
Restrictions
Your web site must run in a Python virtual environment built by running the following commands from a Command Prompt in a suitable working directory:
pip install virtualenv
virtualenv webtest
cd webtest
scripts\activate
pip install flask mysql-connector-python
It is recommended that you also use this virtual environment for development. Regardless, you must test your site within the virtual environment before submitting it. This is the virtual environment in which your code will be tested by the assessor. If it does not work, marks will not be awarded.
In addition to the libraries in the above virtual environment, you may use the jQuery library for JavaScript, but may not use any other frameworks or libraries. This means that you may not use libraries that are “Flask extensions” if they are not installed with Flask.
(Please do not send e-mails asking if you can use other extension libraries; the answer is no. The purpose of the coursework is to understand how JavaScript and server interaction work at the lowest level possible, not in terms of abstractions created by higher level code.)
Your website must be built using HTML 5 and ECMAscript 6 on the client, and Flask, MySQL and Python 3 on the server.


Plagiarism
This is individual work. You must not copy or share code with other students. Do not copy code from online sources, answers, tutorials or existing open-source software. Copied code will result in the plagiarism process being invoked and you may be asked to attend an online meeting to verify that your understanding of your code is consistent with you having written it.
You must be very careful with the use of online tutorials on this module. Your primary learning source should be the module notes and the lecturer and tutorial staff. There are a very large number of online tutorials on the topic of web development, but many are incorrect, out-of-date, or badly written.
Sites which present code and then explain it are often cheating sites, not tutorials. Retroactively explaining large amounts of code is not an effective learning method, but is often used as a trick to “justify” presenting code actually intended to be cut and pasted. Often the explanations are extremely poor or even incorrect and will confuse your understanding further.
Submission
Submission is in three stages:
●a preliminary report 
●the actual website 
●a final report
Due Date:    Preliminary report: (Week 5 - Thursday March 28, 2024)
        Website: (Week 11 - to be announced)
        Final report: (Week 12 - to be announced)
The preliminary report is worth 20% of each component of the marks from the Specification section. The implementation is worth 60%, and the final report is also worth 20%.
Code implemented in the final submission but not reported on in the actual report can still score full marks on the other two components, but you will lose out on potential feedback on your report.
The final report may refer to sections of code that were not implemented, but it will likely not be possible to write the report well without having implemented those sections.
Preliminary Report
The preliminary report should cover the design and structure of implementation you intend to use to produce the selected functionality. This should include:
●ER diagram for database used in the website
●the division of functionality between client and server (in this context the “client” means the web browser and JavaScript code, not the human user);
●wireframes representing the user interface;
●an overview of the intended implementations at client and server.
Website
Students are expected to start developing the website from the first week of the semester, the website should be uploaded as a .zip file to the student website by (Date to be announced). To prepare your .ZIP file, do the following steps:
1.Prepare a fresh virtual environment via the commands described in the “restrictions” section.
2.Copy your website files into the virtual environment, activate it, and ensure that your website works inside it.
3.Use the mysqldump utility to output your database specification into a file in the virtual environment. (The mysqldump.exe file is in the bin directory of the MySQL Server install path.)
4.Delete the directories Include, Lib, Scripts, and tcl.
5.ZIP the virtual environment directory.
The 60% of the section mark for the website is divided as follows:
●The basic functionalities: 30%.
●Quality of user interface design: 10%.
●Quality of back-end architecture: 20%.
Remember to break down processes in detail to allow these to be described. “The user can click to login” is not sufficient detail - the process of logging in is a multi-stage one that will likely involve several communications between the client and server, and use of the database.
It is not necessary to include source code in the report. The report will be your main opportunity to gather feedback before the submission (although you may also ask for help in practical sessions) so make sure to provide detail on any decisions you are not sure about, so that the assessor can provide useful feedback.
The preliminary report should be submitted on the student website by (Date to be announced). You may have already started developing your implementation before this submission.


Final Report
The final report should be at standard font size, and should address the following issues:
Describe the accessibility measures added to your site and who they are intended for. The measures must be documented in WCAG as correct ways to increase accessibility. You could also describe any additional accessibility features that might be added with more development time. Note that the absence of inaccessible features that could never be relevant to the site (such as video) cannot be listed here and is not worth any marks. (2.5%)
Describe how you would adapt your site for mobile phone users. You do not have to write actual changes to the CSS, HTML, or JavaScript, but you should describe the changes you would make and the means by which they would adapt the site. It is not acceptable to write that you would replace your site with an app, (5%)
Describe how you have tested your site. This should include a formal test plan and results as covered on previous programming and software engineering, and any fixes you made. This should include testing both the functionality and accessibility of your site. You should also test that your site works when multiple sessions interact with it at once, by using multiple browsers at once on your computer. (10%) Note: if you present your test plan and results in a table, lines and extra space taken by that table do not count against the limit of 6 sides of A4.
Choose one of the major JavaScript frameworks such as ReactJS, Bootstrap or Angular, and research it only. Describe how you would modify your site to work within this framework and what difference it would make to implementation of your site. Note that your description must be specific to your site - a general description of the framework will score no marks. (2.5%)
The final report should be uploaded to Student Website by (Date to be announced).
Overall Mark Scheme
    Basic functionality
Initial Report    20%
General Implementation    30%
User Interface    10%
Back-End Implementation    20%
Final Report    20%
Component total    100%


Tips
Using the lecture material
The lecture material and practical’s do not directly walk you through the coursework, but it can be completed by applying the skills they teach.
●Session 7 will help you think about designing your database. The specification includes administrators, instructors, students... Think about what needs to be stored about each one and how they relate to each other, and what data needs to be stored about the relationships.
●Think about database transactions - what is the list of actions that the user can take that alter the database? How can you write each one as a query? Think back to CHC4007 and consideration of use cases.
●What input does each transaction need, and how can you get that from the user over the web? Sessions **4 will help here.
●How will you send the input to the server? First, in what form? How can you make it easy for your program to work with but also secure? Again, see sessions **4. Second, how will you actually send it over the web? See sessions 5 and 8 for your options.
●Can you now write the Python program for the transaction and assign it to be a Flask route? See sessions 5 and 6 as well as general Python programming from CHC4007.
●How will you return the response to the user? Will you use a web template (session 6) or maybe a JavaScript program that reads from the server using AJAX (session 9)?
●Is the transaction “stateful” - meaning that it changes the treatment of other transactions after it, such as logging in? If so, what do you need to store in the Flask session variable (session 6) to allow this?
Previous Common Errors
Here are some previous mistakes frequently made by students on Web Development coursework. Please be careful not to repeat them!
Preliminary report
●Repeating what is stated in the specification as if it was your decision rather than what you have been told to do.
●Telling the story of how a function will be implemented rather than how the implementation will work.
●Failing to break down tasks into client and server components or attributing all of a multi-stage task to one of these; for example “the student logs into the site” which actually requires multiple steps and cannot be purely done on the client.
●Describing what is stored on the client or server, but not what functionality they have.
●Over-emphasising the choice of technologies, rather than how they are used.
●Writing many-to-one relationships with the foreign key on the wrong side.
●Trying to store foreign keys to two different tables in the same field without distinguishing them.
●Not showing data table descriptions, only sample data that does not formally indicate structure.
●Omitting field types from specifications.
●Stating that the “user will be logged in” without indicating what method is used to signal this.
●Large amount of dead space on UI designs.
●Showing UI prototypes instead of wireframes.
●Where search is implemented, not providing a wireframe for the search results page.
●Where AJAX is used, not providing a structure for the JSON messages that will be used.
Web site
●Using unauthorized libraries.
●Failing to implement all basic functionality.
●Functions on the server that require the user to be logged in don’t actually check that the user is logged in, for example “add resources” can not add lecture resources unless the instructor is logged in.
●Storing passwords in cleartext in the database.
●Making the database or on-screen fields for a comment text too short for messages to be entered.
●Duplicated data in the database, violating normal form.
●Missing or redundant foreign keys in tables.
●Search loads entire table and searches it in Python rather than using SQL database search.
●Can only search exact, not partial, matches.

Final Report
●Listing the general principles of mobile friendliness, framework features, etc. but not how they would be used on this particular site.
●Testing complete functionality paths instead of individual interactions. While testing paths is a good idea, remember that users may not follow them; web requests can be sent in any order as a result of shared links, the back button, etc.
●Not testing edge, exceptional or error cases.

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

















 

掃一掃在手機打開當前頁
  • 上一篇:代寫CMT313、代做Java/c++編程語言
  • 下一篇:代做1CWK100、代寫C/C++程序語言
  • 無相關信息
    合肥生活資訊

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

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

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

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

          9000px;">

                欧美久久一区二区| 日韩精品中文字幕在线不卡尤物| 欧美精品在线一区二区| 欧美电影免费观看高清完整版 | 中文字幕中文在线不卡住| 亚洲一区在线观看网站| 波多野结衣精品在线| 久久久蜜桃精品| 国产麻豆欧美日韩一区| 欧美一级在线观看| 日韩国产精品久久久久久亚洲| 欧洲一区二区av| 一级日本不卡的影视| 91官网在线免费观看| 日本视频一区二区三区| 欧美精品丝袜中出| 国产乱人伦偷精品视频免下载| 久久婷婷一区二区三区| av在线播放成人| 无码av中文一区二区三区桃花岛| 欧美精品在线一区二区| 狠狠色丁香婷综合久久| 中文字幕一区二区5566日韩| 色噜噜狠狠色综合欧洲selulu| 亚洲国产日韩一级| 国产视频一区在线播放| 色婷婷综合久久久久中文一区二区 | 老色鬼精品视频在线观看播放| 制服.丝袜.亚洲.另类.中文| 国产精品一级二级三级| 亚洲成av人片在www色猫咪| 亚洲精品在线网站| 色妞www精品视频| 麻豆精品一二三| 亚洲综合色成人| 中文字幕亚洲精品在线观看| 欧美一级电影网站| 欧美一区二区三区视频免费| 91麻豆免费看片| 国产成人在线网站| 另类调教123区| 青青青伊人色综合久久| 亚洲日本在线视频观看| 国产精品国产精品国产专区不蜜 | 99精品视频免费在线观看| 日日摸夜夜添夜夜添亚洲女人| 国产午夜亚洲精品午夜鲁丝片 | 国产精品福利一区| 自拍偷拍国产精品| 久久久国产精品午夜一区ai换脸| 在线观看日韩国产| 欧美日韩成人在线一区| 777色狠狠一区二区三区| 欧美麻豆精品久久久久久| 狠狠狠色丁香婷婷综合激情 | 欧美日韩日日摸| 日本韩国欧美三级| 欧美人动与zoxxxx乱| 欧美日韩成人高清| 在线成人小视频| 国产三级三级三级精品8ⅰ区| 国产无一区二区| 日韩理论片一区二区| 婷婷综合久久一区二区三区| 国产一区二区三区四| 99久久精品免费精品国产| 国产亚洲成年网址在线观看| 欧美不卡在线视频| 亚洲乱码国产乱码精品精的特点| 精品嫩草影院久久| 亚洲色图欧洲色图婷婷| 免费成人小视频| 91国偷自产一区二区三区成为亚洲经典| 欧美亚洲综合在线| 国产精品视频观看| 狠狠色狠狠色综合系列| 欧美日韩国产一级片| 国产精品国产自产拍高清av王其| 一区二区欧美国产| www.欧美亚洲| 国产片一区二区三区| 免费亚洲电影在线| 在线一区二区三区四区五区 | 欧美精选一区二区| 欧美白人最猛性xxxxx69交| 亚洲aⅴ怡春院| 欧美日韩在线播放三区四区| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 激情综合色丁香一区二区| 欧美亚洲愉拍一区二区| 亚洲精品五月天| 91在线视频播放地址| √…a在线天堂一区| 国产乱子轮精品视频| 日韩精品专区在线影院观看| 亚洲国产综合视频在线观看| 91官网在线观看| 天天操天天色综合| 精品成人在线观看| 粉嫩高潮美女一区二区三区| 久久免费精品国产久精品久久久久| 精品中文字幕一区二区| 欧美激情一区二区三区蜜桃视频| 国产成a人亚洲精| 亚洲人成网站影音先锋播放| 欧美日韩成人综合| 丁香激情综合五月| 天天色综合成人网| 国产欧美精品一区二区色综合| 激情小说欧美图片| 亚洲一区二区av电影| 精品久久久久久久久久久久久久久久久| 狠狠色综合日日| 亚洲国产日韩精品| 亚洲精品国久久99热| 欧美sm极限捆绑bd| 日韩精品专区在线影院重磅| 在线观看一区二区精品视频| 国产精品一区2区| 麻豆精品一二三| 精品制服美女丁香| 免费在线观看精品| 九色|91porny| 福利一区二区在线观看| 国产精品自拍网站| 国产在线精品视频| 波多野洁衣一区| 色悠久久久久综合欧美99| 99麻豆久久久国产精品免费| 成人激情动漫在线观看| av影院午夜一区| 色94色欧美sute亚洲13| 欧美日韩午夜在线| 精品少妇一区二区三区日产乱码| 久久久久久久综合日本| 久久久精品黄色| 亚洲国产视频网站| 国产成人av资源| 91日韩一区二区三区| 欧美精品成人一区二区三区四区| 欧美成人高清电影在线| 在线成人免费观看| 欧美亚洲综合色| 久久久久久久av麻豆果冻| 亚洲在线视频一区| 97精品电影院| 久久精品一区二区| 日本美女一区二区三区| 99久久精品国产精品久久| 日韩欧美精品在线| 午夜免费久久看| 欧美中文字幕久久| 成人欧美一区二区三区黑人麻豆 | 精久久久久久久久久久| 欧美午夜精品免费| 亚洲在线一区二区三区| 91尤物视频在线观看| 国产精品国产三级国产aⅴ原创 | 欧美在线免费视屏| 亚洲国产日韩一级| 欧美日韩美女一区二区| 亚洲一区二区在线播放相泽| 成人黄色在线视频| 一区二区三区在线免费观看| 91在线高清观看| 亚洲一区二区黄色| 国产精品视频观看| 国产精品―色哟哟| 国产91在线看| 亚洲精品日日夜夜| 欧美一二三四区在线| 亚洲日本一区二区| 欧美日韩免费一区二区三区视频| 一区二区三区日韩欧美| 777a∨成人精品桃花网| 久久精品免费观看| 久久久久久久久久久99999| 成人小视频免费在线观看| 洋洋av久久久久久久一区| 欧美一区二区三区视频| 99久久婷婷国产综合精品 | 中文字幕成人av| 欧美亚男人的天堂| 成人午夜又粗又硬又大| 精品毛片乱码1区2区3区| 色一区在线观看| 风间由美一区二区三区在线观看| 五月天激情综合| 亚洲一区二区四区蜜桃| 亚洲国产精品99久久久久久久久| 这里只有精品99re| 欧美性xxxxxx少妇| 在线一区二区三区四区五区| 国产成人亚洲综合a∨婷婷| 三级久久三级久久久| 亚洲天堂2014| 国产精品久久一卡二卡| 99国产欧美另类久久久精品| 亚洲精品欧美综合四区| 国产精品欧美久久久久无广告 |