ASSESSMENT SUMMARY SHEET This sheet is marked by the assessor and used as a final record of student competency. All student submissions (outlined below) are to be attached to this cover sheet before...

1 answer below »
ictweb411


ASSESSMENT SUMMARY SHEET This sheet is marked by the assessor and used as a final record of student competency. All student submissions (outlined below) are to be attached to this cover sheet before placing on the students file. Student results should not to be entered onto the Student Database unless all relevant paperwork is attached to this form. Student Name: Student ID No: Final Completion Date: Unit Code: ICTWEB411 Unit Title: Produce basic client-side script for dynamic web pages Please attach the following documentation to this form Result S = Satisfactory NS = Not Satisfactory C = Competent NYC = Not Yet Competent Assessment 1 Observation Scenario Checklist S | NS Assessment 2 Written Test Answers Checklist S | NS Final Assessment Result for this unit C / NYC Student Declaration: I declare that I have been assessed in this unit, and I have been advised of my result. I also am aware of my appeal rights. Name: _____________________________ Signature: _____________________________ Date: ____/_____/_____ Assessor Declaration: I declare that I have conducted a fair, valid, reliable and flexible assessment with this student, and I have provided appropriate feedback Name: ______________________________ Signature: ______________________________ Date: ____/_____/_____ Administrative use only Entered into Student Management Database _______________ Date Initials ASSESSMENT 1 COVER SHEET This form is to be completed by the student and must be attached with the assessment task. All the information written into the form must be correct as the same information would be used to process and declare results. If unsure about any field in the form, please contact your assessor. Student Name: Student ID No: GLEN Assessment submission date Unit Code: ICTWEB411 Unit Name: Produce basic Client-Side Script for Dynamic web Pages Please attach the following documentation to this form Result Assessment No: 1 Satisfactory / Not Satisfactory Assessment Type: Observation Assessor Feedback: Student Plagiarism Declaration: By submitting this assignment to the college I declare that this assessment task is original and has not been copied or taken from another source except where this work has been correctly acknowledged. I have made a photocopy or electronic copy of my assessment task, which I can produce if the original is lost. Assessor: I declare that I have conducted a fair, valid, reliable and flexible assessment with this student, and I have provided appropriate feedback. Signature:.................................................... Date:............................................................. Student: I have received, discussed and accepted my result as above for this unit and I am aware of my appeal rights. Signature:.......................................................... Date:.................................................................. ASSESSMENT 1 – OBSERVATION This information is to be handed to each student to outline the assessment requirements SCENARIO: You are to create TWO forms and write client side script to perform validation of the form inputs. OBJECTIVE: Before create the forms, create a brief specification document detailing the necessary dynamic functionality of the script, identifying the appropriate programming language that should be used and the web document requirements with the clients (Trainer/Workplace Supervisor/Mentor). Form 1 Form must accept the following information: · First Name · Surname · Gender · Age · Mobile Phone Number · Address Data needs to be entered for each field except gender which means that all the fields are mandatory except the gender. Following validations are mandatory for the form 1. First name and Surname should not be empty 2. Age must be a number. 3. Mobile number should only include the numbers. 4. There is no such validation on the address field except that it should not be empty. Your embedded script should contain technical documentation in the form of comments. Form 2 It is a website contact form, and must also post to an email address (by providing a mailto: URL as the form action). The form is to accept the following information: · Contact Name · Contact telephone number · Contact email address · Details of enquiry Along with sending the enquiry to the client, the user is to be sent an email saying their enquiry has been lodged, and we will respond within the next 2 working days. Following validations needs to be done on this form- 1. Contact Name must not be empty 2. Contact number should be only numbers 3. The e-mail address must be filled 4. Details must not be empty. Submission: Show these two forms to your trainer who can look for any errors and test the validation. Your trainer can make any modifications to the task according to the situation. ASSESSMENT 1 CHECKLIST Did the student Part A Part B Arrange to talk with customer (assessor/Workplace supervisor/mentor) Yes No Yes No Identify the customers’ requirements Yes No Yes No Actively listen to customers concern Yes No Yes No Present professionally to client Yes No Yes No Consider the purpose of each document Yes No Yes No Determine the most appropriate mark up language for each document (HTML, DHTML or XHTML) Yes No Yes No Add content to body Yes No Yes No Choose appropriate scripting language (JavaScript, XHTML, Active X, VB script) Yes No Yes No Design the scripts Yes No Yes No Write the HTML document base Yes No Yes No Write the embedded scripts (JavaScript, XHTML, Active X, VB script) Yes No Yes No Ensure scripts have inputs reasonably validated Yes No Yes No Text scripts for functionality and rectify where required Yes No Yes No Validate document against style guide Yes No Yes No Record all validation procedures Yes No Yes No Rectify any validation issues that arise Yes No Yes No Provide documents to client Yes No Yes No Obtain client sign-off Yes No Yes No RESULT: S | NS S= Satisfactory | NS= Not Satisfactory ASSESSMENT 2 COVER SHEET This form is to be completed by the student and must be attached with the assessment task. All the information written into the form must be correct as the same information would be used to process and declare results. If unsure about any field in the form, please contact your assessor. Student Name: Student ID No: GLEN Assessment submission date Unit Code: ICTWEB411 Unit Name: Produce basic Client-Side Script for Dynamic web Pages Please attach the following documentation to this form Result Assessment No: 2 Satisfactory / Not Satisfactory Assessment Type: Written Test Assessor Feedback: Student Plagiarism Declaration: By submitting this assignment to the college I declare that this assessment task is original and has not been copied or taken from another source except where this work has been correctly acknowledged. I have made a photocopy or electronic copy of my assessment task, which I can produce if the original is lost. Assessor: I declare that I have conducted a fair, valid, reliable and flexible assessment with this student, and I have provided appropriate feedback. Signature:.................................................... Date:............................................................. Student: I have received, discussed and accepted my result as above for this unit and I am aware of my appeal rights. Signature:.......................................................... Date:.................................................................. ASSESSMENT 2 – WRITTEN TEST This information is to be handed to each student to outline the assessment requirements. Please refer to the instructions below regarding completing this assessment Student Instructions:Time Allowed: 2 Hours This is a closed book written assessment. In the time allocated, you are to answer all of the following questions. Make sure you: · Print Clearly · Answer all questions · Do not use any sheet to answer other than the provided · Use only black or blue pen to write assessment · Ask your assessor if you do not understand a question. Whist your assessor cannot tell you the answer, he/she may be able to re-word the question for you · Do not cheat. Anyone caught cheating will automatically be marked Not Yet Competent for this unit. There are NO EXCEPTIONS to this rule. Questions: 1 – What are
Answered Same DayAug 26, 2021ICTWEB411Training.Gov.Au

Answer To: ASSESSMENT SUMMARY SHEET This sheet is marked by the assessor and used as a final record of student...

Neha answered on Aug 29 2021
132 Votes
64116 - validation/form1.html
Personal Information
First name:

Surname:

Gender:

Age:

Mobile:

Address:
64116 - validation/form2.html
Personal Information
Contact Name:

Contact Number:

Email :

Details/Enquiry:
64116 - validation/Report.docx
1 – What are the differences between client-side scripting and server-side scripting?
The client-side scripting is performed when we want to generate a call which can run on the client and does not need any server-side processing. This type of script is present in the HTML document and we can use it to examine the form submitted by the user to find the errors before submitting it or call to change the content as per the user input.
The service side scripting can be defined as a technique which is used to produce the code which we can run on the server side. It is the script of programs which can run on the web server.
2 – State one reason why can’t you rely solely on client-side validation when creating forms that post to dynamic web pages or CGI scripts?
The main reason of using client-side validation in the forms is that it allows the developer to change the code easily and modify it as per the user needs in no time.
3 – List ten common events for objects in web document than can be captured by client-side scripting?
        1. onabort
        1. onerror
        1. onblur
        1. onfocus
        1. onchange
        1. onkeydown
        1. onclick
        1. onkeypress
        1. ondblclick
        1. onkeyup
4 – Why technical documentation of code is important?
    
The reason to create technical documentation storage news the risk of customer tickets common expenses done on the customer service and to enable the support team which can solve the queries of the customers effectively install the main purpose of having Adobe technical documentation is to help the users in achieving the goals for the product.
5 – What is the importance of identifying the client-side script requirements before coding it?
When we start any project it is important to understand all the basic requirements before actually implementing it hold stop when we write this client side script then we should understand the client needs and user inputs so that accordingly code can be returned without any error it is important to find out all the requirement so that we do not have to code again and advance for the same process.
6 – What are Open Platforms in software...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here