ITM Missing

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 7

Sr.No.

Remarks
Practicals
1. To prepare your Biodata using MS-word
To prepare a list of marks obtained by students in different subjects and
2. show with the help of charts/graphs the Average, Minimum and Maximum
marks in each Subject.
Prepare a presentation explaining the faculties, infrastructure available in
3.
your college.

4. Design a Web page containing information about the department.


Create a new document that takes the format of Business letter. Combine
5. <P> <BR> tags to properly separate the different parts of a document such
as address, subject etc.
Create a document that uses multiple <BR> and <p> tags and put returns
6. between <PRE> tags to add the blank lines to the document to see if
browsers send them differently.
Beginning with an ordered list, create a list that nests both an unordered list
7.
and definition list.
Use the ALIGN attribute of an <IMG> tag to align another image to the top
8. of the first image. Play with this feature, align the image to TOP, MIDDLE
and BOTTOM.

9. Study of E-mail system.

10. Create your own e-mail id in Yahoo.com & Indiatimes.com

11. Create a web page that displays Inline CSS.

12. Create a web page that displays Internal CSS.

13. Create a web page that displays External CSS.

14. Create a frame in HTML by using frame-set tag.

Create a form in HTML for student registration by using radio button and
15.
check boxes.
Create a seven-item ordered list using roman numerals. After the fifth item.
16.
Increase the next list by five.
Create a Table of contents style page that notes a different document for
17.
each chapter or session of the document.

18. Installing internet & external modems, NIC and assigning IP addresses.
Practical - 16
Objective: Create a seven-item ordered list using roman numerals.
After the fifth item. Increase the next list by five.
Source Code:

<html>
<head><title>this is an ordered list</title></head>
<body>
<ol type="I">
<Li>Math
<Li>English
<Li>Science
<Li>Internet fundamentals
<Li>D.B.M. S
<Li value=10> Data Steucture
<Li> Discrete Mathematics
</oL>
</body>
</html>
Output:
Practical - 17

Objective: Create a Table of contents style page that


loads a different document for each chapter or session of the
document.

Source Code:
<HTML>
<HEAD>
<Title>Metalworks</title>
</head>
<body>
<P>
Welcome to the Metalworks Help files. These are actually HTML files which you
are<br> viewing with Swing JEditor component. Pretty cool,eh? were this an actual
program,<br> these files would contain helpful tips and instructions.Since this is not
a real program, <br>but only a demo
</p>
<h3>Topics</h3>
<ul>
<li><a href="metalworks.html">About Metalworks</a>
<li><a href="metalworks.html">About Java</a>
<li><a href="metalworks.html">About HTMLs</a>
</ul>
</body>
</html>
Output:
Practical - 18
Objective: Installing internet & external modems, NIC and assign IP address.

Internet: A global network connects millions of computers. More than 100 countries are
linked into exchanges of data, news and opinions. Unlike online services, which are
centrally controlled, the Internet is decentralized by design. Each Internet computer, called
a host, is independent. Its operators can choose which Internet services to use and which
local services to make available to the global Internet community.

Modem: A modem is a device or program that enables a computer to transmit data over,
for example, telephone or cable lines. Computer information is stored digitally, whereas
information transmitted over telephone lines is transmitted in the form of analog waves. A
modem converts between these two forms.
External/Internal Modems: A modem is a device or program that enables a computer
to transmit data over, for example, telephone or cable lines. Computer information is stored
digitally, whereas information transmitted over telephone lines is transmitted in the form of
analog waves. A modem converts between these two forms.
There are 2 basic physical
types of modems: Internal &
External modems. External
modems sit next to the
computer and connect to the
serial port using a straight-
through serial cable.
Internal modems are a plug-in
circuit board that sits inside
the computer. It incorporates
the serial port on-board. They
are less expensive than
external modems because
they do not require a
case, power supply and serial cable. They appear to the communication programs as if they
were an external modem for all practical purposes.

IP addresses: An identifier for a computer or device on a TCP/IP network. Networks using


the TCP/IP protocol route messages based on the IP address of the destination. The format of
an IP address is a 32- bit numeric address written as four numbers separated by periods.
Each number can be zero to 255. Forexample, 1.160.10.240 could be an IP address.
Within an isolated network, you can assign IP addresses at random as long as each one is
unique. However, connecting a private network to the Internet requires using registered IP
addresses (called Internet addresses) to avoid duplicates.
The four numbers in an IP address are used in different ways to identify a particular network
and a hoston that network.
Four regional Internet registries -- ARIN, RIPE NCC, LACNIC and APNIC -- assign
Internet addresses from the following three classes.

● Class A - supports 16 million hosts on each of 126 networks


● Class B - supports 65,000 hosts on each of 16,000 networks
● Class C - supports 254 hosts on each of 2 million networks

The number of unassigned Internet addresses is running out, so a new classless scheme called
CIDR isgradually replacing the system based on classes A, B, and C and is tied to adoption of
IPv6.

NIC: A network interface card (NIC) is a hardware device that handles an interface to a
computer network and allows a network-capable device to access that network.
Implementation: - The card implements the electronic circuitry required to communicate
using a specific physical layer and data link layer standard such as Ethernet or token ring.
This provides a base for a full network protocol stack, allowing communication among small
groups of computers on the same LAN and large-scale network communications through
routable protocols, such as IP.
There are four techniques used to transfer data, the NIC may use one or more of these
techniques.
● Polling is where the microprocessor examines the status of the
peripheral under program control.
● Programmed I/O is where the microprocessor alerts the
designated peripheral by applying itsaddress to the system's address bus.
● Interrupt-driven I/O is where the peripheral alerts the
microprocessor that it's ready to transferdata.
● DMA is where an intelligent peripheral assumes control of
the system bus to access memorydirectly. This removes load from the CPU but requires a
separate processor on the card.

You might also like