You are on page 1of 9

Mid Exam / Fall 2020 (Paper Duration 24 hours)

(Online Assignment Based Question Paper)

Course No.: CS-566 Course Title: Web Technologies


Total Marks: 12 Date of Exams:
Degree: BSCS Semester: 5th Section: A, B
Marks
Q.No. 1 2 3 4 5 6 7 8 9 10 Obtained/
Total Marks
Marks
Obtaine
d
Total Marks in Words:
Name of the Teacher:
Who taught the course: Signature of Teacher / Examiner:

To be filled by Student

Registration No.: Name:

(THEORETICAL/PRACTICAL EXAMINATION)

Answer the following questions.


Q.No.1. How we can fetch data over the internet? Draw a step wise flow sheet of whole
process? (Marks 4)
ANSWER:

 Install http package. The http package provides an easy way to download data online.
 Make a network request
 Convert feedback to Dart customization.
 Download data.
 Show data.
DIAGRAM:
Q.No.2. How to insert a hyperlink in webpage? give example by adding your personal email
address as hyperlink extension?
(Marks 4)
ANSWER:

HTML, easily add links to any HTML page. Link an email page. You can also create a link to
an external website. To create a hyperlink to an HTML page, use the <a> and </a> tags,
which are tags used to describe links.

The <a> tag indicates where the hyperlink starts and the </a> tag indicates where it ends.
Any text added within these tags, will serve as a link. Enter the link URL to <a href=" ”>. Just
remember that
Example:

<! DOCTYPE html>


<html>
<head>
<head> HTML Links </title>
</head>

<body style="background-color: blue">


<h1 style="color: Blue"> Frid Carrier Company </h1>
<p2>
Hello sir, Hope you are all right due to covid 19 we are feeling sorry you have to wait
some before you receive your order. But not much you receive your order in next day.if you
have any queries or any problem regarding to your product you can contact us <a
href="mailto:frid1122@gmail.com"a>
E-mail</a> regarding to your query we feel pleasure to help you.
</p2>
<br/>

<bf/>
<br/>
Ali Team<br/>

</body>
</html>
Q.No.3. Design a webpage in HTML containing your academic qualification?
(Marks 4)
ANSWER:

<html>
<head>
<title>
Resume
</title>
</head>
<body style="background-color: blue">

<div>
<h2>FRID HASSAN</h2>
<h4>
Chak No 90/9L , Sahiwal<br/>
Punjab,Pakistan<br/> <br>

Email Id:FRID1122@gmail.com<br/>
Contact No: +92-3346371192
</h4>
</div>
<div class="silver" style="padding-left: 25%">
<h3 style="padding-left: 10%">Acadmic Qualifications:</h3>
<table border="10" style="background-color: cyan">
<tr>
<th>Class</th>
<th>School / College</th>
<th>Board</th>
<th>Passing year</th>
<th>Marks</th>
</tr>
<tr>
<td>Middle</td>
<td>ARMY FOCRCES School SAHIWAL</td>
<td>Sahiwal</td>
<td>2014</td>
<td>790</td>
</tr>
<tr>
<td>Matric</td>
<td>GOVT HIGH School SAHIWAL</td>
<td>Sahiwal</td>
<td>2016</td>
<td>767</td>
</tr>
<tr>
<td>FSC</td>
<td>PUNJAB College sahiwal</td>
<td>Sahiwal</td>
<td>2018</td>
<td>738</td>
</tr>
<tr>
<td>University</td>
<td>Arid Universty</td>
<td>Sahiwal</td>
<td>2018-2022</td>
<td>2.8</td>
</tr>
</table>
</div>

<div class="gray">

<style type="text/css">
.gray
{
border-radius:8px;
padding:8px 8px;
margin:4px 4px;
}
td
{
border:1px solid black;
}
table
{
border:2px solid black;
border-radius:4px;
}

</style>

</body>
</html>

You might also like