IT430 Assignment 2 Solution and Discussion
-
Assignment No. 02
Semester:Fall 2019
E-Commerce–IT430
Total Marks: 15Due Date: 02-12-2019
Objectives:
After solving this assignment, students will learn about:
• HTML tags and handling of HTML tags.
• Form creation and form elements handling in HTML.
• Knowledge about JAVASCRIPT functions and JAVASCRIPTevents.
Instructions:
Please read the following instructions carefully before submitting assignment:
It should be clear that your assignment will not get any credit if:
The assignment is submitted after due date.
The assignment is submitted via email.
The assignment is copied from Internet or from any other student.
The submitted assignment does not open or file is corrupt.
It is in some format other than.html.
Students are required to submit HTML code file only with .html extension.
Don’t upload word format file(.doc) etc.
For any query about the assignment, contact at it430u.edu.pkQuestion Statement:
Develop \ Create a web page using Html and JavaScript for the purpose of Grade Calculation as shown below:
Solution guidelines of this web page are given as follows:
• Create Heading “Grade Book Calculator” using H2 tag and Welcome to online Grade Book calculator using H4 tag.
• Create text boxes forStudent ID,Name, Father Name. Show your student ID,Name ,father name respectively.
• CNIC format Should be followed as provided default value.
• Before clicking on Grade Book button user must enter all subject marks otherwise alert message box should be shown like the following:• Create two buttons labeled as Grade Book and Reset. On onClick event of Grade Book,the JavaScript function “Gradecal()”should be called to check whether subject marks entered or not. Alert Message should be shown in case of error. If subject marks are entered in the text boxes then, Math+English+Computer/3as an average will be calculated and shown in ‘Average Marks’ text Box.
• Grade should be calculated on the basis of average marks and shown in the alert message box. Following table should be used to calculate Grades.Grade calculation Grade
Average >= 85 A+
Average <=84 or Average >= 74 A
Average <= 73 or Average >= 66 B
Average < =65 or Average >= 51 C
Average <=50 or Average >= 40 D
Average <40 FBest of Luck
-
<!DOCTYPE html> <html> <head> <title>IT430 ASSIGNMENT NO 2 </title> </head> <body bgcolor="@B6D53B"> <center> <h2>Grade Book Calculator</h2> <h4 >Welcom To Grade Book Calculator</h4> <form id="myform"> <table> <tr> <td> Student_ID: </td> <td> <input id="studentid" oninvalid="alert('Please Enter Student_ID ')" type="text" placeholder="Enter your VU ID" required="required" /> </td> </tr> <tr> <td> Name: </td> <td> <input id="nameid" oninvalid="alert('Please Enter Name ')" type="text" required="required" /> </td> </tr> <tr> <td> Father Name: </td> <td> <input id="fathernameid" oninvalid="alert('Please Enter Father Name ')" type="text" required="required" /> </td> </tr> <tr> <td> CNIC: </td> <td><input id="cnicid" pattern="^[0-9+]{5}-[0-9+]{7}-[0-9]{1}$" oninvalid="alert('Please Enter CNIC ')" type="text" required="required" /> </td> </tr> <tr> <td> English: </td> <td><input type="text" id="englishid" oninvalid="alert('Please Enter English Marks ')" name="english" required="required" /> </td> </tr> <tr> <td> Computer: </td> <td><input type="text" id="computerid" oninvalid="alert('Please Enter Computer Marks ')" name="computer" required="required" /> </td> </tr> <tr> <td> Math: </td> <td><input type="text" id="mathid" oninvalid="alert('Please Enter Math Marks ')" name="math" required="required" /> </td> </tr> <tr> <td> <input type="submit" onclick="calculate()"/> <input type="reset"> </td> </table> </form> </center> <script> function calculate(){ var field1 = parseInt(document.getElementById("englishid").value); var field2 = parseInt(document.getElementById("computerid").value); var field3 = parseInt(document.getElementById("mathid").value); var result = (field1+field2+field3)/3; alert(result); } </script> </body> </html>
-
@SQA-Master
please join chat room for solution code
-
@SQA-Master
please join chat room for solution code
-
-
Assignment Available only for Cyberian Chat Room! Members
Please check Live Streaming
-
-
@SQA-Master
Solution is crating team ASAP!
-
Comping Soon Solution!
-
Please send solution of this Assignment
Recent Topics
-
CS502 Midterm Solved Papers Mid and Final
CS502 - Fundamentals of Algorithms6 -
CS301 Quiz 1 Solution and Discussion
CS301 – Data Structures5 -
UNSOLVED MTH404 Assignment 2 Solution and Discussion
MTH404 - Dynamics5 -
org.jetbrains.kotlin.util.KotlinFrontEndException: Exception while analyzing expression
Android Development4 -
STAT408 Assignment 1 Solution and Discussion
STAT408 - Experimental Design Analysis4 -
SOLVED MTH304 Assignment 2 Solution and Discussion
MTH304 - Statics4 -
SOLVED CS510 Assignment 1 Solution and Discussion
CS510 - Software Requirements and Specifications2 -
SOLVED BNK603 Assignment 1 Solution and Discussion
BNK603 - Consumer Banking2 -
SOLVED CS510 Assignment 2 Solution and Discussion
CS510 - Software Requirements and Specifications2 -
UNSOLVED BIF501 Assignment 1 Solution and Discussion
BIF501 - Bioinformatics II2 -
SOLVED MTH621 Assignment 1 Solution and Discussion
MTH621 - Real Analysis I2 -
BIO731 Assignment 1 Solution and Discussion
BIO731 - Advanced Molecular Biology1 -
EDU602 Assignment 1 Solution and Discussion
EDU602 - Educational Leadership and Management1 -
MTH101 Assignment 1 Solution and Discussion
MTH101 - Calculus And Analytical Geometry1 -
EDU602 Quiz 2 Solution and Discussion
EDU602 - Educational Leadership and Management1 -
BNK603 Quiz 2 Solution and Discussion
BNK603 - Consumer Banking1 -
PM Modi Fallon on stairs
General Discussion1 -
GEN733 Assignment 1 Solution and Discussion
GEN733 - Biometrical Techniques in Genetics1 -
BIO734 Assignment 1 Solution and Discussion
BIO734 - Advances in Cell Biology1 -
BIF604 Assignment 1 Solution and Discussion
BIF604 - Special Topics in Bioinformatics1