本次CS代写的主要涉及如下领域: JavaScript代写,CSS代写,HTML代写,英国程序代写
Summative Assessment
Programming Assignment 1: Client-side scripting
Overview
- Learning Outcomes
Subject-specific Knowledge
-
- Interaction between JavaScript programme and the Document Object Model (DOM).
- Using control statements to loop and make decisions.
- Understanding of the nature of imperative programming in the object-oriented style.
- Knowledge and understanding of good programming practice (e.g. reuse, documentation and style).
Subject-specific and Key Skills - students will be able to demonstrate:
-
- an ability to realise solutions to problems as working JavaScript programs
- an ability to use software tools related to programming
- an ability to recognize and apply the principles of abstraction and modelling
- an ability to communicate technical information.
2. Requirements
- Develop a JavaScript programme that will:
- include control statements, objects and include get/set operations
- include JavaScript classes, with: constructors
- showcase the principles of abstraction, modelling, prototypal inheritance
- apply imperative programming principles
- apply DOM
- Consider user interfacing
-
- present your programme as a web application, by writing a set of HTML pages and CSS files
- adapt your web application for mobile devices
- Apply good programming practices by:
-
- using tools that support software development, i.e. web frameworks, Git, etc.
- demonstrating code reuse
- writing documentation - communicate technical information about your system by using JSDoc
- accounting for code quality (you can use ESLint rule below, standard or recommended).
ESLint rules for code quality: You can use this .eslintrc.js
module.exports = { "extends": "standard", "rules": {
"semi": [2, "always"], "indent": "off"
}
}
Application domain
Develop a web application that will provide the latest information on Covid-19 in a specific area in the UK (or your country of origin). Note that you will not be evaluated on your data analytics skills; the focus here is on assessing your client-side scripting knowledge and skills.
Note: Alternatively, you can look for Covid-19 information with a greater focus on e.g. biological or medical aspects.
The application has to include the following functionality:
- input interface, with an option for the user to input information (input text, select from options, etc.), e.g. on location, age, health condition, etc.
- and output interface, that will use a variety of methods to present output information to the user, including most of the following:
- textual content
- images, videos
- image maps
- maps
- interactive visualizations – graphs, charts, diagrams.
Mandatory content to include on your web page/application:
- number of infected and death cases (trends over a certain period of time) -> based on that to label the area as low, medium or high risk;
- government advice, restriction measures for individuals to follow (work, socializing, etc.);
- maps with the most affected locations/clusters;
- availability of hospitals.
Additionally, select any two of the following to also include:
- shops, restaurants, cafes, pubs opening times and other measures they abide by;
- effect on public transport services;
- effect on economy/business -> trends over a certain period of time;
- effect on population’s mental health -> trends over a certain period of time.
For the Covid-19 data to feed into the application, it is understandable it might not be the “latest information”. Also, you can merge several datasets if no single one provides all the data you want your application to give information on, or generate synthetic data for the variables/attributes you might be missing. You can find datasets on:
o E.g. https://registry.opendata.aws/aws-covid19-lake/
- Google Dataset Search
- Awesome public datasets
- kaggle
- opendatasoft
- Microsoft Research Open Data
- UK data service
- Marking Criteria
The following are four marking criteria and the total points that can be obtained for each criterion.
|
Mark /100 |
System functionality |
30 |
|
|
Code quality |
25 |
|
|
Documentation |
25 |
Usability and clarity
(continued on next page) |
|
|
Interface |
20 |
Presentation, design and usability of user interface:
|