0% found this document useful (0 votes)
2 views4 pages

INTERNET Removed

The document provides an overview of the Internet, web pages, websites, web browsers, web addresses, web servers, the World Wide Web, and Uniform Resource Locators (URLs). It explains how these components interact to facilitate data sharing and access to information globally. Additionally, it includes examples of C programs for various functionalities, such as checking voting eligibility and determining if a number is even or odd.

Uploaded by

Sairam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views4 pages

INTERNET Removed

The document provides an overview of the Internet, web pages, websites, web browsers, web addresses, web servers, the World Wide Web, and Uniform Resource Locators (URLs). It explains how these components interact to facilitate data sharing and access to information globally. Additionally, it includes examples of C programs for various functionalities, such as checking voting eligibility and determining if a number is even or odd.

Uploaded by

Sairam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

INTERNET

Internet is also referred to as "Network of Networks". It establishes a high level of connectivity which has
resulted into an unparallel degree of fastest, easiest and the cheapest ways to transfer or share data and information
around the globe. It provides access to communication services and information resources to millions of users
around the globe, round the clock.
WEB PAGE
A web page is a document of information that can be accessed and viewed through a web browser. A web page
is generally contained in a website and constitutes as a source of information that floats in the world wide web.
The information is usually coded in HTML (Hypertext Markup Language). Web page is retrieved from a local
host computer or from a remote computer with the help of Internet. Web pages are requested and served from
web server using protocols like-Hyper Text Transfer Protocol (HTTP). Web pages generally contain
information in the form of text, images, pictures, sound, audio, video, etc.
WEBSITE
A location on the web server where an individual or any organization uploads its information is known as website.
A website is a collection of one or more web pages which display information with the help of a web browser. The
first page of a website is known as Home Page. The pages on a website are linked to one another and a person
can navigate to any page by clicking on the links called 'Hyperlinks'. Websites are hosted on the web server on
rental basis by the Internet Service Providers (ISP), In order to access them, every website is provided with a
unique name.
WEB BROWSER
A web browser is an application software that helps a user to navigate through different web sites on Internet and
display web pages. The user requests a page from web server with the help of web browser. After receiving the
request through the web browser, the web server makes it available for web browser to display the page.
Some common web browsers are Internet Explorer, Mozilla Firefox, Opera, Apple Safari, Google Chrome,
Microsoft Edge, etc. Many web browsers are upgraded frequently with enhanced features.

WEB ADDRESS
Web Address is the unique name for identifying a website on Internet. On Internet, there are numerous web sites.
It is only with the help of web address, that we can find a particular website.
Text based addressing system on Internet is called Domain Name System (DNS). In this system, website has a
unique name such as: oracle.com, cbse.gov.in etc. The last three letters of the web address is known as Top Level
Domain (TLD) that provides information about the root of the domain for the type of organization to which the
address belongs to. It helps to identify an address in Domain Name System. Some common Top-Level Domains
are:

Page | 1
Abbreviations Used to Denote
.com Commercial Firms
.edu Universities/Educational firms
.gov Government Bodies/Organisations
.org Non-Government/Non-Profit Organizations
.net ISP'S/Networks
.co National & Multinational Companies
.int International Organizations

In DNS, codes of country can also be included. The code comprises of two letters. Some common code of certain
countries are:

Code Denotes the Country


.au Australia
.uk United Kingdom
.jp Japan
.fr France
.in India
.us United States of America
.nz New Zealand

WEB SERVERS
Web server is the principal computer or server that stores the Contents of different websites. It provides data and
information to computers on request which are connected to it through the network via Internet. In other words,
it can be said that it is a computer that stores data and runs software that are designed to send web pages in file
format when requested by web browsers.
The server is usually a computer of high configuration i.e., with large storage capacity and high-speed processor
that stores data and executes the instruction very fast. Web server is responsible for accepting requests from client,
i.e., web browser and responding in the form of web pages.
WORLD WIDE WEB
The World Wide Web is a framework for accessing the linked documents spread over millions of computing
devices over the Internet. It is a service of information in combination of text, photographs, graphics, audio, video,
etc. that are presented on the Internet and allows the multimedia and hypertext files to be displayed and linked on
the internet.

UNIFORM RESOURCE LOCATOR (URL)


URL identifies the location of a web site or a web page on the Internet. Each web page has a unique address called
URL that identifies its location on the Internet. Web browsers utilizes the URL to open or to retrieve files on
Internet. The format of a URL Consists of different parts.
Example: https://www.cbse.gov.in
The first part of the address (URL) indicates the protocol or service being used. The second part of the URL is a
Full Qualified Domain Name (FQDN) which identifies the web address running on the server.
Page | 2
1. /* C Program to check whether a person is eligible to vote (or) not */
#include <stdio.h>
int main()
{
int age;
printf("Enter your age:");
scanf("%d",&age);
if(age>=18)
{
printf("You are eligible to vote");
}
else
{
printf("You are not eligible to vote");
}
return 0; }
2. /* C Program to check whether a number is even or odd */
#include <stdio.h>
int main()
{
int n;
printf("Enter a number:");
scanf("%d",&n);
if(n%2==0)
{
printf("The entered number is even");
}
else
{
printf("The entered number is odd");
}
return 0;
}
3. /* C Program to check whether two angles are complementary to each other or not */
#include <stdio.h>
int main()
{
int a1,a2,sum;
printf("Enter angle 1:");
scanf("%d",&a1);
printf("Enter angle 2:");
scanf("%d",&a2);
sum = a1+a2;
if(sum==90)
{
printf("The two angles are complementary");
}
Page | 3
else
{
printf("The two angles are not complementary");
}
return 0; }
4. /* C program to find the profit (or) loss */
#include <stdio.h>
int main()
{
int cp,sp,p,l;
printf("Enter cost price:");
scanf("%d", &cp);
printf("Enter selling price:");
scanf("%d", &sp);
if (sp>cp)
{
p = sp-cp;
printf("The profit is %d", p);
}
else
{
l = cp-sp;
printf("The loss is %d", l);
}
return 0;
}
5. /* C program to find largest of three numbers */
#include <stdio.h>
int main()
{
int n1,n2,n3;
printf("Enter any three numbers:\n");
scanf("%d%d%d",&n1,&n2,&n3);
if(n1>n2 & n1>n3)
{
printf("%d is the largest number",n1);
}
else if(n2>n3 & n2>n1)
{
printf("%d is the largest number",n2);
}
else
{
printf("%d is the largest number",n3);
}
return 0;
}
Page | 4

You might also like