1. Homepage
  2. Exam
  3. COMP SCI 2207 Web and Database Computing - Final Assessment: Quiz Practice

COMP SCI 2207 Web and Database Computing - Final Assessment: Quiz Practice

This question has been solved
Engage in a Conversation

Quiz: Practice Final Assessment

Quiz instructions Practice Assessment This quiz contains the task descriptions/questions for the Practice Final Assessment. This practice assessment will NOT be marked. It is provided to help you prepare for the Final Assessment. More details on the Assessment can be found HERE CourseNana.COM

Make sure you are familiar with these details before commencing the actual assessment; you are required to review those details and complete a readiness quiz to gain access if you haven't already done so. CourseNana.COM

Assessment Content This quiz contains practice questions and tasks that examine the same skills and knowledge as the tasks you will receive in the final assessment, however due to recent advances in Generative AI, some of the tasks themselves will be different . Submitting Your submission will be in 2 parts: CourseNana.COM

  1. Answers for Programming Questions should be submitted in GitHub. Your answers to these questions will be assessed based on the code present in the provided GitHub repository for this assessment at the Submission Deadline. Your repositories will be locked after the deadline. Your work will be automatically saved & comitted as you progress, but you will still need to manually push/sync to GitHub.
  2. Answers to written questions should be completed in the spaces provided in this quiz. Your answers will be automatically saved as you progress. This quiz will automatically submit at the deadline. There is only 1 submission attempt for the real assessment. DO NOT SUBMIT UNTIL YOU HA VE COMPLETED IT .  DO NOT SUBMIT UNTIL COMPLETE There is only 1 submission attempt for the final assessment. This practice quiz has multiple attempts , but the real assessment does not: If you submit the real quiz early or by accident, it cannot be re-opened. Your answers to written questions cannot be changed after submitting the real assessment. If in doubt, do not submit; this real quiz will auto-submit at the deadline.

Resuming a closed/timed-out session If your session is closed or timed-out, re-open/re-load the assignment page on MyUni and click the Resume Quiz button below . CourseNana.COM

Seeking Help/Clarification During the real assessment period, your teacher(s) will be available on Zoom each day between 9am-5pm to help with any admin or technical issues and provide clarification if required. Be aware, messages sent to other platforms may not be read/addressed during the assessment time period. The Zoom details will be provided here in he real assessment  Before you begin Connect to GitHub Classroom to access your repository and configuration/starter files for this assessment: Don't forget to regularly push/sync your progress. CourseNana.COM

Part 1

You have been hired to design a web application for an online shop that sells shoes. The system requires the following features: Users can search the dif ferent shoes available Shoes can be searched/filtered by: Shoe Size Different shoe styles Different Brands/Labels Price Users can sign-up and log-in Users can order shoes Users can view their order history CourseNana.COM

Thinking about such a system, complete the following tasks: 30 pts Question 1 Upload CourseNana.COM

Task 1.1 (30 marks)

Design a database schema diagram for the system described. Be sure to include appropriate relationships and cardinalities. Be sure to normalise the schema to at least 3rd normal form. Submit as an image or pdf file. Choose a file CourseNana.COM

Task 1.2 (10 marks)

When building a database schema, N-N relationships need to be properly reduced/decomposed. Briefly discuss how this applies to the system you've designed in Task 1.1 and, specifically in terms of your system and its relationships, explain how this relates to database normalisation. General explanations/descriptions to do not relate to your implementation will not receive marks. 0 words </> 30 pts Question 3 CourseNana.COM

Task 1.3 (30 marks)Edit View Insert Format Tools Table

Implement your database schema from Task 1.1 in MySQL When you create the database Ensure appropriate tables, data types, keys and integrity constraints are present. Add at least 1 row of test data to each table. CourseNana.COM

Save a backup/dump of the database as a .sql file in your GitHub Repository CourseNana.COM

You can use the space below for notes/comments: CourseNana.COM

0 words </> 10 pts Question 4 CourseNana.COM

Task 1.4 (10 marks)

Write a SQL query to retrieve the name and email address of all users who bought a given item in the last 5 days.Edit View Insert Format Tools Table 12pt Paragraph You can assume the item's unique indentifying information is provided. 0 words </> 160 pts Question 5 CourseNana.COM

Task 1.5 (160 marks)

Implement a basic web application for the search feature of this online shop. Use only the technologies covered in this course: HTML & CSS JavaScript, AJAX, & basic client-side V ue.js NodeJS/Express MySQL Only implement the search page/feature and any necessary supporting code on the server . You do NOT need to implement other features. Users should also be able to filter search results by: Shoe Size Different shoe styles Different Brands/Labels PriceEdit View Insert Format Tools Table 12pt Paragraph Be sure to follow best practices as discussed throughout the course. CourseNana.COM

Your implementation should be saved in your GitHub Repository CourseNana.COM

The marks for this task are assigned as follows: Up to 30 marks for functionality Up to 20 marks for HTML & CSS Up to 20 marks for client side JS and V ue Up to 20 marks for AJAX requests Up to 20 marks for server side routes Up to 20 marks for MySQL integration Up to 30 marks for good UX, standard compliance, maintainability & security practices CourseNana.COM

You can use the space below for notes/comments: 0 words </> 15 pts Question 6 Edit View Insert Format Tools Table 12pt Paragraph CourseNana.COM

Task 1.6 (15 marks)

Betts (https://www.betts.com.au/) is an example of an online shop that sells shoes. Identify a feature present in both the Betts website, and your implementation from Task 1.5. Specifically in terms of perceivability and kinematic load, discuss how these two systems compare 0 words </> CourseNana.COM

Part 2

The provided part2 folder contains a web application. This web application is for the online Q&A site that we developed throughout the semester . To run it, you will need to: CourseNana.COM

  1. Navigate your terminal to the part2 directory .
  2. Use npm install to install its modules.Edit View Insert Format Tools Table 12pt Paragraph
  3. Start a MySQL server .
  4. Run npm start . It has 2 user accounts, alice & bob both using the password password . 15 pts Question 7

    Task 2.1 (15 marks)

    The files provided contain a number of HTML & CSS validation errors CourseNana.COM

Identify the validation errors and in terms of those specific errors discuss the benefits and disadvantages of how modern web browsers handle invalid HTML & CSS. General explanations/descriptions that do not relate to the identified errors will not receive marks. 15 pts Question 8 CourseNana.COM

Task 2.2 (15 marks)

The provided index.js JavaScript file in the routes folder also contain a number of linting errors for the linting rules used in this course. CourseNana.COM

Identify the linting errors and in terms of those specific errors discuss the role that linting plays in the development of error-free code. General explanations/descriptions that do not relate to the identified errors will not receive marks. 15 pts Question 9 CourseNana.COM

Task 2.3 (15 marks)

Specifically using examples from this Part 2 web application, explain the purpose and role of HTTP status codes in web systems. General explanations/descriptions that do not relate to the Part 2 web application will not receive marks. CourseNana.COM

Task 2.4 (20 marks)

Discuss the role that middleware plays in the security of this web application and identify any issues with the way that the middleware in this web application is implemented. General explanations/descriptions that do not relate to this Part 2 web application will not receive marks. CourseNana.COM

Task 2.5 (20 marks)

This web application contains a SQL injection vulnerability . CourseNana.COM

Identify the vulnerability and explain the consequences of SQL injection in terms of this vulnerability . General explanations/descriptions that do not relate to this Part 2 web application will not receive marks. 30 pts Question 12 CourseNana.COM

Task 2.6 (30 marks)

Using the vulnerability identified in 2.5, use Insomnia to craft and test an exploit that does one of the following: Modifies data in the database without authorisation Reveals data from the database without authorisation CourseNana.COM

Use the Copy as Curl option to copy the request for this exploit as done in pracs. Submit the copied Curl command/request. 80 pts Question 13 CourseNana.COM

Task 2.7 (80 marks)

Using the list below , fix the issues and make the improvements identified. Fix the validation and linting issues identified in 2.1 & 2.2. Fix any issues with the middleware in this web application as identified in 2.4. Fix the SQL injection vulnerability identified in 2.5. Saved at 15:51 Your fixed web application should be saved in your GitHub Repository CourseNana.COM

The marks for this part are assigned as follows: 20 marks for validation and linting issues fixed 30 marks for middleware issues fixed 30 marks for SQL injection issues fixed CourseNana.COM

You can use the space below for notes/comments: Submit quiz CourseNana.COM

Get the Solution to This Question

WeChat WeChat
Whatsapp WhatsApp
Australia代写,Adelaide代写,COMP SCI 2207代写,COMPSCI 2207代写,COMP2207代写,Web and Database Computing代写,Final Assessment代写,Australia代编,Adelaide代编,COMP SCI 2207代编,COMPSCI 2207代编,COMP2207代编,Web and Database Computing代编,Final Assessment代编,Australia代考,Adelaide代考,COMP SCI 2207代考,COMPSCI 2207代考,COMP2207代考,Web and Database Computing代考,Final Assessment代考,Australiahelp,Adelaidehelp,COMP SCI 2207help,COMPSCI 2207help,COMP2207help,Web and Database Computinghelp,Final Assessmenthelp,Australia作业代写,Adelaide作业代写,COMP SCI 2207作业代写,COMPSCI 2207作业代写,COMP2207作业代写,Web and Database Computing作业代写,Final Assessment作业代写,Australia编程代写,Adelaide编程代写,COMP SCI 2207编程代写,COMPSCI 2207编程代写,COMP2207编程代写,Web and Database Computing编程代写,Final Assessment编程代写,Australiaprogramming help,Adelaideprogramming help,COMP SCI 2207programming help,COMPSCI 2207programming help,COMP2207programming help,Web and Database Computingprogramming help,Final Assessmentprogramming help,Australiaassignment help,Adelaideassignment help,COMP SCI 2207assignment help,COMPSCI 2207assignment help,COMP2207assignment help,Web and Database Computingassignment help,Final Assessmentassignment help,Australiasolution,Adelaidesolution,COMP SCI 2207solution,COMPSCI 2207solution,COMP2207solution,Web and Database Computingsolution,Final Assessmentsolution,