You are on page 1of 11

ASSIGNMENT 2

<!DOCTYPE html>

<html>

<body bgcolor="#E6E6FA">

<center><font color="#3284F4"><h2> Course Web Page</h2></font></center>

<h3><u><font color="#FAA205">General Description about course</font></u></h3>

As a continuation of Programming Java SE, students (1) manage databases using Java; (2) build two-
and threetier

client-server applications; and (3) refine industry-standard coding practices. Students build a complete
Webbased

application that incorporates three-tier development including client-side, server-side, and database

processing.

<br>

<br>

<h1><u><font color="#FAA205">TOPICS Covered in JAVA EE</font></u></h1>

<ol>

<li>Introduction About JAVA EE</li>

<li>Eclipse installation</li>

<li>Writing first program in Eclipse</li>

<li>Features</li>

<li>Aggregation</li>

<li>Composition</li>

<li>Inheritance</li>

<li>Abstraction</li>
<li>Encapsulation</li>

<li>Polymorphism</li>

<li>Platform independent</li>

<li>Operators</li>

<li>Control flows</li>

<li>Constructors</li>

<li>Interface and Sub class</li>

<li>Abstract classes</li>

<li>Access privileges</li>

<li>Data Transfer Object</li>

<li>Static and Final keyword.</li>

<li>Arrays</li>

<li>Exception handling</li>

<ol>

<li>Try/catch/finally</li>

<li>User Defined Exception</li>

</ol>

<li>Threads</li>

<li>String class</li>

<li> I/O operations</li>

<br>

<br>

<h3><u><font color="#3284F4">Assignments</font></u></h3>

<center><font size="5"><b>CSD 4464_2</b></font></center>


<center><font size="4">Assignment 2</font></center>

<br>

Give the XML Schema corresponding to the XML document. We assume that StudID should always be
in the format s999999999 and Status takes one of the values “Freshman”, “Sophomore”, “Junior”, and
“Senior”. We assume there is, at least one student. The name and address are of type string.

<br>

<br>

&lt;?xml version=&quot;1.0&quot; ?&gt; <br>

&lt;Students&gt; <br>

&lt;Student&gt; <br>

&lt;StudId&gt;s111111111&lt;/StudId&gt; <br>

&lt;Name&gt;John Doe&lt;/Name&gt; <br>

&lt;Address&gt;123 Main St.&lt;/Address&gt; <br>

&lt;Status&gt;Freshman&lt;/Status&gt; <br>

&lt;/Student&gt; <br>

&lt;Student&gt; <br>

&lt;StudId&gt;s222222222&lt;/StudId&gt; <br>

&lt;Name&gt;Mary Smith&lt;/Name&gt; <br>

&lt;Address&gt;145 Main St.&lt;/Address&gt; <br>

&lt;Status&gt;Junior &lt;/Status&gt; <br>

&lt;/Student&gt; <br>

&lt;/Students&gt;<br>

<br>

<br>

<br>

<center><font size="4"><b>CSD 4464_2</b></font></center>

<center><font size="3">Assignment 1</font></center>


<br>

<font size="4"><b> Introduction </b></font>

<p>

The purpose of this project is to practice writing basic web pages with HTML and deploy them. You
will have to write two static web pages . You can do this using a text editor such as TextPad or
Notepad editor. You are not allowed to use any HTML-generating tools, such as FrontPage, for any
part of this project. The first web page is your personal home page. The second web page is your CSD
4464 course page, where you will post your finished projects. </p>

<br>

<font size="4"><b> Part 1: Personal Home Page </b></font>

<br>

<br>

Create a page named index.html that describes you. On your page, include some or all of the
following information (just a suggestion):

<ul>

<li>Your name </li>

<li>A short bio or description of yourself. </li>

<li>A list of classes you are taking right now. Make a link to your CSD 4464 course web page. </li>

<li>Your 3 favorite sports, movies, books, or TV shows. Make at least one link to an interesting site.
</li>

<li>Two images(e.g. one of your personal pictures). </li>

<li>Include a table. </li>

<li>Should use at least 15 different HTML tags </li>

</ul>

<br>

<font size="4"><b> Part 2: Personal CSD 4464 Course Web Page </b></font>

<br>
<br>

Create a personal course web page that describes the course and a list of topics and assignments.

<br>

<br>

<br>

<br>

<hr><br>

<br>

</body>

</html>
OUTPUT
Part1

<!DOCTYPE html>

<html>

<head>

<title> Index1.html </title>

</head>

<body background="background.png">

<h1><font color="green" align ="right">jd</font></h1><br>

<h2><p>I am from India.I did Bachelor Degree from India.</p></h2>

<h2><font color="yellow">classes</font></h2>

<ul><h2>

<li>Java Programming EE</li>

<li>ProgrammingC#.net</li>

<li>Co-op prepration</li>

<li>Database Programing</li>

<li>Relational Database</li></h2>

<ul>

<a href="http://www.freeimageslive.com/galleries/nature/abstract/pics/abstract01863.jpg"
align="center" target="_blank">CSD 4464</a>

<table style="background-color:yellow";width="70%">

<tr>

<th>Sports</th><br>

<th>TV shows</th><br>

<th>Movies</th><br>

</tr>
<tr>

<td> Cricket</td><br>

<td> Comedy Nights with Kapil</td><br>

<td> Sada Haq</td><br>

</tr>

<a href="http://www.google.com"target="_blank">google</a></td><tr>

</table>

<br>

<form>

First Name:<input type="text"><br><br>

Last Name :<input type="text"><br><br>

Date :<input type="date" name="bday" min="2018-01-31"><br><br><br>

<img
src="http://www.freeimageslive.com/galleries/nature/abstract/pics/abstract01863.jpg"width="32%"
height="25%">

<footer>

&&copy; All rights reserved

</footer>

</form>

</body>

</html>
OUTPUT

You might also like