IT430 Assignment #1 Solution
Assignment No. 1 Marks: 15
Semester Spring 2011
Question# 1(a)Not Solved
Question# 1 (3+7)
a) Consider an office environment in which we have 10 stand alone computers, one printer and one scanner.
Which topology is suitable for the given scenario? Support your answer with at least two reasons.
a) Consider an office environment in which we have 10 stand alone computers, one printer and one scanner.
Which topology is suitable for the given scenario? Support your answer with at least two reasons.
b) Write an HTML program that creates a table containing a list of Universities in Islamabad using ordered and unordered lists. Set the background color to green. Each University name should be liked with its particular website. By clicking on the University name it must lead the user to the respective University website e.g. http://www.au.edu.pk
Solution{b}:
<HTML> <HEAD> <TITLE> List of Universities in Pakistan</TITLE> </HEAD> <BODY BGCOLOR="LIME" TEXT="BLUE"> <H1>List of Universities in Islamabad</H1> <BR> <P> <table border=1> <tr> <td> <ol> <li> Public Sector University </li> </ol> </td> <td>
<ol><li> Private Sector University </li>
</ol>
</td>
</tr
<tr>
<td>
<ul>
<li><a href=www.au.edu.pk>Air University</a>
</li>
</ul>
</td>
<td>
<ul>
<li><a href=www.riphah.edu.pk>Riphah International University , Islamabad </a>
</li>
</ul>
</td>
</tr>
<tr> <td> <ul> <li><a href=www.aiou.edu.pk>Allama Iqbal Open University</a> </li> </ul> </td> <td> <ul> <li><a href=www.fui.edu.pk> FOUNDATION UNIVERSITY , ISLAMABAD</a> </li> </ul> </td> </tr> <tr> <td>
<ul>
<li><a href=www.bahria.edu.pk>Bharia University , Islambad</a> </li> </ul> </td> <td> <ul> <li><a href=www.nu.edu.pk>National University of Computer and Emerging Sciences</a> </li> </ul> </td> </tr> <tr cols="2"> <td> <ul> <li><a href=www.qau.edu.pkk>Quaid-i-Azam University, Islamabad </a> </li>
</ul>
</td> </tr> <tr cols="2"> <td> <ul> <li><a href=www.iiu.edu.pk>International Islamic University, Islamabad </a> </li> </ul> </td> </tr> </table> </BODY> </HTML>
<ol><li> Private Sector University </li>
</ol>
</td>
</tr
<tr>
<td>
<ul>
<li><a href=www.au.edu.pk>Air University</a>
</li>
</ul>
</td>
<td>
<ul>
<li><a href=www.riphah.edu.pk>Riphah International University , Islamabad </a>
</li>
</ul>
</td>
</tr>
<tr> <td> <ul> <li><a href=www.aiou.edu.pk>Allama Iqbal Open University</a> </li> </ul> </td> <td> <ul> <li><a href=www.fui.edu.pk> FOUNDATION UNIVERSITY , ISLAMABAD</a> </li> </ul> </td> </tr> <tr> <td>
<ul>
<li><a href=www.bahria.edu.pk>Bharia University , Islambad</a> </li> </ul> </td> <td> <ul> <li><a href=www.nu.edu.pk>National University of Computer and Emerging Sciences</a> </li> </ul> </td> </tr> <tr cols="2"> <td> <ul> <li><a href=www.qau.edu.pkk>Quaid-i-Azam University, Islamabad </a> </li>
</ul>
</td> </tr> <tr cols="2"> <td> <ul> <li><a href=www.iiu.edu.pk>International Islamic University, Islamabad </a> </li> </ul> </td> </tr> </table> </BODY> </HTML>
Preview
No comments:
Post a Comment