You are on page 1of 7

Student Declaration

I______AbdulSamad__________ Registration No._____18-Arid-359___, hereby declare that

by attempting the paper for the course _______________CS-666_________, I will not be

involved in any kind of cheating/copying/plagiarizing in solving the short questions based

paper of Final Term Examination Fall 2020. I take full responsibility of my conduct and if I

found involved in any kind of such activity of cheating/copying/plagiarizing, then Institute

reserves the right to reject my paper and take any disciplinary action against me.

Student Signature
Student Declaration

I________AbdulSamad______ Registration No.____18-Arid-359___, hereby declare that by

attempting the paper for the course ___________CS-666________, I will not be involved in

any kind of cheating/copying/plagiarizing in solving the short questions based paper of

Final Term Examination Fall 2020. I take full responsibility of my conduct and if I found

involved in any kind of such activity of cheating/copying/plagiarizing, then Institute reserves

the right to reject my paper and take any disciplinary action against me.

Student Signature
Final Exam / Fall 2020 (Paper Duration 24 hours)
(Online Short Questions Based Paper)

Course No.: CS-666 Course Title: Web Engineering


Total Marks: 20 Date of Exams: 13-02-2021
Degree: BSCS/BSIT Semester: 6th 7th Section: A
Marks
Q.No. 1 2 3 4 5 6 7 8 9 10 Obtained/
Total Marks
Marks
Obtaine
d
Total Obtained Marks in Words:
Name of the Teacher: Nuzhat Akram
Who taught the course: Signature of Teacher / Examiner:

To be filled by Student

Registration No.: 18-Arid-359 Name: AbdulSamad

(PRACTICAL EXAMINATION)
Final Exam / Fall 2020 (Paper Duration 24 hours)
(Online Short Questions Based Paper)

Course No.: CS-666 Course Title: Web Engineering


Total Marks: 20 Date of Exams: 13-02-2021
Degree: BSCS/BSIT Semester: 6th 7th Section: A
Marks
Q.No. 1 2 3 4 5 6 7 8 9 10 Obtained/
Total Marks
Marks
Obtaine
d
Total Obtained Marks in Words:
Name of the Teacher: Nuzhat Akram
Who taught the course: Signature of Teacher / Examiner:

To be filled by Student

Registration No.: 18-Arid-359 Name: AbdulSamad

(PRACTICAL EXAMINATION)

Answer the following questions.


Q.No.1. Write down the code for this login form?
(Marks 10)
Answer:
<!doctype html>
<html>
<body>
<form action="#" method="post">
<font size = "5"><b>Send e-mail to someone@example.com:</b></font><br><br>
Name: <br>
<input type="text" name="name" value="your name" size="10"><br><br>
E-mail: <br>
<input type="text" name="email" value="your email" size="10"><br><br>
Comment: <br>
<input type="text" name="com" value="your comment" size="30">
<br>
<br>
<br>
<button type="button"><u>S</u>end</button>
<button type="reset"><u>R</u>eset</button>
</form>
</body>
</html>
Q.No.2. Write down the java script code for this popup message?
(Marks 05)

Answer:
<!doctype html>
<html>
<head>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</head>
<body>
<body>
<button type="button" onclick="JSalert()">Show Popup</button>
<script type="text/javascript">
function JSalert(){
swal("Congrats!", ", Your account is created!", "success");
}
</script>
</body>
</html>

</script>
</body>
</html>

You might also like