Page 209 - PYTHON-12
P. 209
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 IP address is a 32-bit numeric address
written as four numbers separated by periods. Each number can be 0 to 255. Some examples of IP
addresses are: 192.168.1.2, 10.324.1.3 and 109.134.2.2.
As seen in the above examples, the numbers in an IP address are in the decimal form. When an
IP address is processed, the computer converts these numbers into binary form internally. The
following is an example of IP address in the decimal form: 192.168.1.10
The preceding IP address in its binary form is: 11000000.10101000.00000001.00001010
The IP address of a computer is assigned by the Internet Service Provider (ISP) whose internet
connection is used on that computer.
You can find out the IP address of your computer by performing the following steps:
1. Click the Start button. A pop-up menu containing various options appears.
2. Open the Run dialog box.
Type cmd in the Run dialog box and press Enter. The command prompt (cmd) window opens.
3. Type ipconfig and press Enter. The output appears, displaying the IP address of your computer
(as shown in the output window given below).
8.30.8 Website
A website is a collection of various web pages, images, videos, audios or other kinds of digital
assets that are hosted on one or several web servers. The first page of a website is known as home
page where all the links related to other documents are displayed. The web pages of a website are
written using HTML and the information is transferred over the internet through HTTP protocol.
The HTML documents consist of several hyperlinks that are accessed through HTTP protocol.
Examples of various websites are: cbse.nic.in, google.com, amazon.in, etc.
CTM: A website is a collection of several web pages which are related to each other through hyperlinks.
Computer Networks
8.30.9 Web Page
A web page is an electronic document/page designed using HTML. It displays information in
textual or graphical form. Traversal from one web page to another web page is possible through
hyperlinks.
8.55