Class 10Computer ScienceFull chapter

Internet and Its Services

The chapter with the most definitions in the paper. Learn the Internet versus the World Wide Web distinction, how IP addresses, DNS and URLs fit together, what each protocol is for, and how to write email, e-commerce and cloud answers that collect full marks.

The Internet, the Web and Your ISP

Quick answer The Internet is the worldwide network that carries data; the World Wide Web is one service running on it. An ISP is the company that connects you to that network.

The Internet is a worldwide system of interconnected computer networks that exchange data using a common set of rules called TCP/IP (Transmission Control Protocol / Internet Protocol). It is often called a network of networks, because nobody owns it as a whole: a school LAN (Local Area Network), a college campus network and the networks of telecom operators are all joined together, so a computer sitting on any one of them can reach a computer on any other. A definition that earns full marks names three things — that it is global, that it is made of many networks joined together, and that the joining works because every machine follows TCP/IP.

The World Wide Web (WWW, or simply the Web) is not another name for the Internet, and this is the distinction examiners return to most often. The Web is one service that runs on the Internet: a very large collection of linked documents called web pages, stored on web servers, written mainly in HTML (HyperText Markup Language), addressed by URLs and fetched by a browser using the HTTP protocol. The Web was developed by Tim Berners-Lee as an application built on top of the Internet, which already existed before it.

The cleanest way to hold the difference is this: the Internet is the infrastructure — cables, optical fibre, routers, satellites, mobile towers and the addressing system; the Web is the content that travels over that infrastructure. Roads make the same point. The road network is the Internet; the Web is one kind of traffic using it. The proof that the two are different is that a great deal of internet activity never touches the Web at all — sending an email through SMTP, transferring files with FTP, an internet voice call, or an online game exchanging data with its server. Each of those uses the Internet without loading a single web page.

The Web is held together by hypertext — text containing hyperlinks that can jump to another page, possibly on a server in another country, without the reader knowing where the file physically sits. The Web is therefore non-linear: there is no fixed order in which its pages must be read.

To reach any of this you need an ISP, an Internet Service Provider. An ISP is an organisation that provides internet access to homes, schools and businesses, usually against a monthly charge in rupees. Along with the connection, an ISP normally allots an IP address, supplies or configures a modem and a router, and may offer email accounts, web hosting space or a fixed (static) IP address. The common ways of connecting in India are broadband over cable or optical fibre, mobile data on a 4G or 5G network, and a leased line for offices that need a dedicated, guaranteed link.

Two small points are worth fixing now, because they are easy marks. First, Wi-Fi is not the Internet. Wi-Fi is only a wireless way of joining your device to a router; if the router link to the ISP is down, the Wi-Fi still works but no website will open. Second, connection speed is measured in Mbps — megabits per second, not megabytes — so an 8 Mbps link delivers roughly one megabyte of data per second, because 8 bits make 1 byte.

Internet Network of networks Global system of networks joined together by the TCP/IP rules
WWW A service running on the Internet Linked HTML pages on web servers, fetched by HTTP
ISP Internet Service Provider Company that gives internet access, an IP address and often email or hosting
TCP/IP Transmission Control Protocol / Internet Protocol The base protocol suite every internet device follows
Speed Mbps = megabits per second Mbps · 8 Mbps is about 1 megabyte per second, since 8 bits = 1 byte
Remember
  • The Internet is a worldwide network of networks whose devices communicate using TCP/IP.
  • The WWW is one service running on the Internet — linked web pages fetched by browsers using HTTP.
  • Internet is the infrastructure; the Web is the content carried over it. Email, FTP and VoIP use the Internet without using the Web.
  • An ISP supplies the connection, allots an IP address and may add email, hosting or a static IP.
  • Wi-Fi only connects a device to a router; it is not the Internet itself.
  • Speed is measured in Mbps (megabits per second); 8 bits make 1 byte.

IP Addresses, Domain Names, DNS and URLs

Quick answer Machines find each other by numeric IP addresses; people use domain names; DNS converts one into the other; a URL is the full address of one file on the Web.

Every device connected to the Internet needs an address, exactly as every house does. That address is the IP addressInternet Protocol address — a unique numeric label that identifies a device on a network so that data can be delivered to it and replies can find their way back. The version most often written in textbooks is IPv4, which is 32 bits long and is written as four numbers separated by full stops, each number between 0 and 255, for example 192.168.1.10. Because 32 bits cannot supply enough addresses for the number of devices now in use, IPv6 was introduced; it is 128 bits long and is written as eight groups of hexadecimal digits separated by colons.

An IP address may be static — fixed, and given to servers that must always be findable at the same address — or dynamic, allotted afresh by the ISP at each connection, which is what an ordinary home broadband link gets.

Numbers are convenient for machines and hopeless for people, so the Internet also has a naming system. A domain name is the readable name of a website, such as irctc.co.in. Read a domain name from right to left. The rightmost part is the top-level domain (TLD): either a generic one such as .com (commercial), .org (organisation), .net (network), .edu (education) or .gov (government), or a country-code TLD such as .in for India. Before it comes the second-level domain, the name the owner registered. In front of that may sit a host name or sub-domain, traditionally www.

DNS, the Domain Name System, is the service that joins the two worlds. It maintains, spread across many servers, the mapping between domain names and IP addresses, and converts a name into the matching number whenever a name is used. The sentence to write in an exam is that DNS acts like a telephone directory of the Internet: you supply the name and it returns the number. The process itself is called name resolution. When a school website name is typed into a browser, the browser first asks a DNS server for that domain IP address, receives the number, and only then contacts the web server. If DNS fails, sites will not open by name even though the connection is perfectly healthy.

A domain name identifies a whole site; a URL identifies one exact resource inside it. URL stands for Uniform Resource Locator and is the complete address of a file on the Web — a page, an image or a PDF. Its parts, in order, are the protocol (also called the scheme), the domain name of the server, an optional port number, the path or folder, and the file name. Some URLs also carry a query string after a question mark, passing extra information such as a search word to the server.

Splitting a given URL into its parts is a standard question, so practise on one:

https://www.example.edu.in/admissions/form.html

https       -> protocol (scheme) used to fetch the file
www         -> host name or sub-domain
example     -> second-level domain, the registered name
.edu        -> domain type, showing the kind of organisation
.in         -> top-level domain, the country code for India
/admissions -> path, the folder on the web server
form.html   -> file name of the web page requested

Two habits protect marks here. Never call the whole URL a domain name — the domain name is only one component of it. And never confuse a URL with an IP address: the URL is what a person types, the IP address is what the machines use, and DNS turns the first into the second.

IPv4 192.168.1.10 32 bits · Four decimal numbers, each 0 to 255, separated by full stops
IPv6 8 hexadecimal groups separated by colons 128 bits · Introduced because IPv4 addresses were running out
Domain www . example . edu . in host . second-level domain . domain type . country code
URL protocol://domain/path/file Uniform Resource Locator — complete address of one file on the Web
DNS domain name -> IP address Name resolution; without it, sites will not open by name
Remember
  • An IP address is a unique numeric address of a device; IPv4 is 32 bits (four numbers 0-255), IPv6 is 128 bits in hexadecimal.
  • A static IP stays fixed and suits servers; a dynamic IP is issued afresh by the ISP at each connection.
  • A domain name is the readable name of a site; the top-level domain (.com, .org, .in) is its rightmost part.
  • DNS translates domain names into IP addresses — the telephone directory of the Internet; the process is name resolution.
  • A URL is the full address of one resource: protocol, domain name, optional port, path and file name.
  • The domain name is only one part of a URL, and a URL is not the same thing as an IP address.

Browsers, Search Engines, Websites and Hosting

Quick answer A browser is software that displays pages; a search engine is a service that helps you find them. Pages live on a web server, and hosting is the rented space they live in.

A web browser is application software installed on a computer or phone whose job is to request web pages from a web server and display them. Chrome, Firefox, Edge, Safari and Opera are browsers. The browser sends its request using HTTP or HTTPS, interprets the HTML that comes back, and renders the text, images and links on screen. Features such as bookmarks, history, tabs, a download manager and private windows are offered by every mainstream browser, although the names and exact behaviour differ from one browser to another.

A search engine is not software on your machine at all: it is a website, a service, that you reach through a browser. It searches its own index of the Web and returns a list of links matching the keywords you typed. Google, Bing, Yahoo Search and DuckDuckGo are search engines. A search engine works in three stages — programs usually called crawlers or spiders visit pages and follow their links, what they find is stored in a huge index, and when a query arrives the engine ranks the indexed pages and shows the results. The distinction to write down is short: the browser is the software that displays a page; the search engine is a service that helps you find which page to display. The confusion is understandable, because most browsers let the address bar act as a search box — but which engine it uses depends on the browser and its settings.

Next, the vocabulary of the Web itself. A web page is a single document written in HTML that a browser can display; it may hold text, images, audio, video and hyperlinks, and a hyperlink is created with the <a> tag together with its href attribute. A website is a collection of related web pages kept together under one domain name — a school website groups its admission, faculty, results and contact pages. The home page is the first or main page of a website, the one that opens when only the domain name is typed; it normally carries the menu and the links to everything else.

Those pages have to live somewhere. A web server is a computer that is permanently connected to the Internet and runs server software; it stores the pages of a website and sends them to any browser that requests them. Web hosting is the service of renting space on such a server so that a site is reachable by the public. A hosting company charges an amount in rupees per year for that space, and the owner separately registers a domain name and points it at the server. A school that wants a website therefore needs three things — the pages, a domain name, and hosting.

Finally, the difference examiners like at the end of this topic. A static web page has fixed content: the HTML file stored on the server is delivered to every visitor exactly as it is, so everybody sees the same thing until the author edits the file by hand. The About Us page of a school site is static. A dynamic web page is built at the moment it is requested, usually by a program running on the server that reads a database, so its content can change with the user, the time or the data. Seat availability on IRCTC, a bank balance after login, and a board result looked up by roll number are all dynamic. Static pages are faster to serve and cheaper to host; dynamic pages need programming and a database, but can show personalised, up-to-date information that could never be maintained by hand.

Browser Chrome, Firefox, Edge, Safari Software that requests and displays web pages
Search engine Google, Bing, DuckDuckGo A website that searches its index and returns links
Hyperlink &lt;a href=...&gt; The HTML tag and attribute that create a link on a web page
Hosting Domain name + server space What a site owner rents so the public can reach the pages
Static vs dynamic Fixed file vs generated on request Dynamic pages read a database and can differ per user
Remember
  • A web browser is software on your device that fetches and displays web pages; a search engine is a website that finds pages for you.
  • A search engine crawls pages, stores them in an index, and ranks results for a query.
  • Web page = one HTML document; website = related pages under one domain; home page = the main page that opens first.
  • A web server stores a site and serves it; web hosting is the rented space on such a server.
  • A static page is the same for every visitor until the file is edited; a dynamic page is generated per request from a database.
  • IRCTC seat availability and a result page are dynamic; a school About Us page is static.

Protocols: HTTP, HTTPS, FTP, SMTP, POP3, IMAP, TCP/IP

Quick answer A protocol is a set of rules for exchanging data. Each internet service has its own, and the exam question is usually which protocol suits a given situation.

A protocol is a set of rules that governs how data is exchanged between devices on a network — how a message is formatted, how it is addressed and how the receiver acknowledges it. Both sides must follow the same rules or nothing can be understood. Each internet service has its own protocol, and the most common question in this chapter describes a situation and asks which protocol is at work.

TCP/IPTransmission Control Protocol / Internet Protocol — is the suite on which everything else sits. IP handles addressing and routing: it gives every device an IP address and decides the path data takes across the networks. TCP handles reliability: it breaks the message into small numbered pieces called packets, checks at the receiving end that every packet has arrived, asks for a fresh copy of anything missing, and reassembles them in the correct order. In an answer, say that TCP/IP is the foundation and that the protocols below are application-level protocols running over it.

HTTPHyperText Transfer Protocol — is the set of rules by which a browser requests a web page and a web server sends it back. Its standard port is 80 and it is stateless, meaning each request is handled independently of the last. Plain HTTP sends everything as ordinary readable text, so anyone able to intercept the traffic could read it.

HTTPSHyperText Transfer Protocol Secure — is HTTP with encryption added by SSL/TLS (Secure Sockets Layer / Transport Layer Security), and its standard port is 443. The data is scrambled before it leaves the browser and unscrambled only at the server, so an interceptor sees nothing useful. Browsers indicate a secure connection with a padlock or similar mark, though the exact symbol and wording differ between browsers. Any page on which you type a password, a card number or a UPI PIN must be HTTPS. Note that the padlock shows the connection is encrypted, not that the site owner is honest.

FTPFile Transfer Protocol, standard port 21 — is used to upload and download files, including whole folders, between a client computer and a server. It is the traditional way a site owner puts website files on to a hosting server. Plain FTP sends the password unencrypted, so secured versions such as FTPS and SFTP are preferred today.

Mail is split across three protocols, and telling them apart is asked very often. SMTPSimple Mail Transfer Protocol, standard port 25 — is used to send outgoing mail, from your mail program to your provider mail server and onward to the recipient server. POP3Post Office Protocol version 3, standard port 110 — is used to receive: it downloads messages from the server to one device and, in its traditional setting, removes the server copy, so a message read on a laptop is then not visible on the phone. IMAPInternet Message Access Protocol, standard port 143 — also receives mail, but keeps the messages on the server and synchronises a view of them, so folders, read marks and deletions match on every device. IMAP suits an account opened on several devices; POP3 suits a single device with intermittent connectivity. Whether an account uses POP3 or IMAP is a setting, and providers differ in what they enable by default.

The port numbers quoted here are standard defaults; an administrator can run a service on another port. Remember the purpose rather than the number: HTTP and HTTPS for web pages, FTP for files, SMTP to send mail, POP3 and IMAP to read it, TCP/IP underneath all of them.

HTTP / HTTPS Web pages — ports 80 / 443 HTTPS = HTTP + SSL/TLS encryption; use it for logins and payments
FTP File transfer — port 21 Uploading and downloading files to and from a server
SMTP Sending mail — port 25 Simple Mail Transfer Protocol; outgoing mail only
POP3 / IMAP Receiving mail — ports 110 / 143 POP3 downloads to one device; IMAP keeps mail on the server and syncs
TCP/IP Packets + addressing IP routes and addresses; TCP splits, checks and reassembles
Remember
  • A protocol is a set of rules for exchanging data; both devices must follow the same one.
  • TCP/IP is the base suite — IP addresses and routes the data, TCP splits it into packets and reassembles them reliably.
  • HTTP transfers web pages in readable form; HTTPS is HTTP plus SSL/TLS encryption and is required for passwords and payments.
  • FTP transfers files between a client and a server, such as uploading a website to its host.
  • SMTP sends outgoing mail; POP3 downloads mail to one device; IMAP keeps mail on the server and syncs across devices.
  • Quoted port numbers are defaults only — remember what each protocol is for, not merely its number.

Electronic Mail: Composing, Cc, Bcc and Attachments

Quick answer Email carries a message and files from one mailbox to another and waits until the recipient reads it. Know the fields, the folders and the difference between Cc and Bcc.

Electronic mail, or email, is the internet service that lets a user send a message — with files attached if needed — from one mailbox to another. It is asynchronous: the recipient need not be online at the moment you send, because the message waits on the mail server until it is read. That single property is why email, rather than chat, is still the accepted medium for formal communication such as leave applications, admission queries and job correspondence.

An email address has two parts joined by the at sign: the user name, which identifies the mailbox, and the domain name of the mail server, as in principal@school.edu.in. The user name must be unique within that domain, spaces are not allowed, and in ordinary practice addresses are treated as not case sensitive.

Composing a message uses a small, fixed set of fields, and knowing exactly what each one does is examinable. To holds the address of the main recipient, the person expected to act on the message. Cc stands for carbon copy: these people receive a copy for information, and every recipient can see the whole Cc list. Bcc stands for blind carbon copy: these people also receive a copy, but their addresses are hidden from everyone else, so no other recipient knows they were copied. Bcc is the correct field when one notice goes to a hundred parents, because it keeps each family address private from the other ninety-nine. Subject is a one-line description of what the message is about, and an attachment is any file — a PDF, an image, a spreadsheet — clipped to the message and delivered with it.

To      : classteacher@school.edu.in
Cc      : coordinator@school.edu.in
Bcc     : parent@example.com
Subject : Leave application for 12 and 13 August
Attach  : medical-certificate.pdf

Attachments come with limits. Every provider caps the total size of a message including its attachments, and the exact limit differs from provider to provider, so a large file is normally placed in cloud storage and shared as a link instead. Providers also block file types commonly used to carry malware. Never open an attachment from an unknown sender — an infected file is a standard way a computer catches a virus.

A mailbox is organised into folders whose names vary between services: Inbox for received mail, Sent for copies of what you have sent, Drafts for unfinished messages, Spam or Junk for unwanted bulk mail set aside by the filter, and Trash or Bin for deleted messages. Three buttons are worth distinguishing: Reply answers the sender alone, Reply All answers the sender together with everybody in the To and Cc lists, and Forward passes the message on to somebody new.

The advantages make a tidy list: delivery in seconds anywhere in the world, no charge per message beyond the internet connection, files can be attached, a dated written record is kept, one message can reach many recipients, and it can be sent or read at any hour. The limitations: it needs an internet connection, the recipient may not check the mailbox promptly, mailboxes fill with spam, attachments can carry viruses, and a message sent to a wrong address cannot reliably be taken back. Basic netiquette — a meaningful subject line, polite language, no typing entirely in capitals, and a check of the address before sending — is often asked as a short answer.

Address username@domain For example principal@school.edu.in
Cc Carbon copy — visible Every recipient can see who was copied
Bcc Blind carbon copy — hidden Other recipients cannot see these addresses
Folders Inbox, Sent, Drafts, Spam, Trash Names differ slightly between mail providers
Mail protocols SMTP out, POP3/IMAP in Sending and receiving use different protocols
Remember
  • An email address is user name + @ + domain name of the mail server; it must be unique within that domain.
  • To is the main recipient; Cc sends a copy that everyone can see; Bcc sends a hidden copy no other recipient can see.
  • Bcc is the correct field for a notice sent to many people, because it protects their addresses.
  • Attachment size limits and blocked file types are set by each provider, so they vary.
  • Reply goes to the sender, Reply All also goes to everyone in To and Cc, Forward sends it to somebody new.
  • Email is fast, cheap, keeps a record and works one-to-many, but needs internet and attracts spam and virus-bearing attachments.

Other Internet Services

Quick answer Chat, VoIP, video conferencing, e-commerce, e-learning, e-banking, e-groups and social networking — each with a one-line definition and an example.

Email and the Web are only two of the services the Internet carries. The rest usually appear as a question asking you to explain any five services, so each needs a one-line definition, an example and, where possible, an advantage.

Chat, also called instant messaging, is real-time exchange of typed messages between two or more people who are online at the same time. It is synchronous, which is exactly what email is not, so it suits short, quick exchanges rather than formal ones. A chat room is a shared space where many users can talk together on one topic.

VoIPVoice over Internet Protocol — is the technology that carries voice calls as data packets over the Internet instead of over the traditional telephone network. Because the call travels on your data connection, a long-distance or international call costs no more than the data it uses; its main limitation is that quality depends on the speed and steadiness of that connection.

Video conferencing is a live meeting in which participants at different places see and hear one another through cameras, microphones and internet connections. Schools use it for online classes and parent meetings; companies use it to avoid travel. Answers should mention what it saves — travel time and cost — and what it needs — a camera, a microphone and adequate bandwidth.

E-commerce is buying and selling of goods and services over the Internet. A customer browses an online store, adds items to a cart, places the order and pays by UPI, net banking, a debit or credit card, or chooses cash on delivery; the seller then ships the item. Its advantages: the shop is open at all hours, prices can be compared quickly and a wide choice is available even in a small town. Its limitations: the product cannot be examined before purchase, delivery takes time, and payment fraud is a risk on untrustworthy sites.

E-learning is learning delivered through the Internet — recorded lessons, live classes, notes, quizzes and assignments — which lets a student learn at a convenient time and repeat a lesson as often as needed. It cannot fully replace laboratory work or a teacher watching a student struggle, so it is normally described as a supplement.

E-banking, or internet banking, is the use of a bank website or app to operate an account: checking the balance, viewing statements, transferring money through NEFT, RTGS, IMPS or UPI, paying bills, and requesting a cheque book. It saves a trip to the branch and works outside banking hours. Safety rules belong in the answer: use only HTTPS pages, never share the PIN, one-time password or card details, avoid banking over an untrusted public network, and log out when finished.

An e-group (mailing list or discussion group) is an online group whose members share a common interest and where a message sent to the group address reaches every member. A class group used to circulate notes and notices is the familiar example. Social networking is the use of websites and apps on which users create a profile and connect with others to share text, photographs, videos and links; the same platforms are used by schools and businesses to reach an audience. The standard caution belongs with it — whatever is posted may be copied and stored by others, so personal details and address should not be shared publicly, and privacy settings should be reviewed.

E-governance — government services delivered online, such as applying for a document or paying a fee — is a useful extra example when a question asks how the Internet has changed daily life in India.

VoIP Voice over Internet Protocol Voice calls carried as data packets rather than on the telephone network
E-commerce Cart -&gt; order -&gt; payment -&gt; delivery Payment by UPI, net banking, card or cash on delivery
E-banking NEFT, RTGS, IMPS, UPI Four ways of transferring money online in India
E-group One message -&gt; all members Mailing list or discussion group of people with a shared interest
Synchronous Chat and video call Both parties present at the same time; email is asynchronous
Remember
  • Chat is real-time typed conversation between users who are online together; email is not real-time.
  • VoIP carries voice calls as data over the Internet, making long-distance calls far cheaper.
  • Video conferencing is a live audio-video meeting needing a camera, microphone and adequate bandwidth.
  • E-commerce is online buying and selling, paid by UPI, net banking, card or cash on delivery.
  • E-banking gives balance checks, statements and NEFT, RTGS, IMPS or UPI transfers, and needs strict password and HTTPS discipline.
  • An e-group sends one message to every member; social networking is profile-based sharing with privacy risks.

Downloading, Uploading and Cloud Storage

Quick answer Downloading brings a file from a server to your device; uploading sends one the other way. Cloud storage keeps your files on servers run by a provider, reachable from anywhere.

Downloading means copying a file from a remote computer or server on to your own device, so the direction of travel is server to you. Saving an admit card from a board website, saving a chapter PDF from a school site, or installing an app from a store are all downloads. Uploading is the opposite: copying a file from your own device to a remote server, so the direction is you to server. Attaching a photograph to an online application form, submitting an assignment to a school portal, or a site owner sending web pages to a hosting server by FTP are all uploads. In one line for the exam: downloading receives data from a server, uploading sends data to a server.

Two practical notes are worth adding to that answer. Most home connections are asymmetric, which means the download speed is higher than the upload speed, so sending a large video usually takes longer than receiving one of the same size. And a download can carry malware, so files should be taken only from official or trusted websites and checked by antivirus software.

Cloud storage is a service that keeps your files on servers maintained by a provider and reached over the Internet, instead of only on the hard disk of your own computer. Google Drive, Microsoft OneDrive, Apple iCloud and Dropbox are examples; the free space given, the paid plans and the sharing options differ from provider to provider. The word cloud means the user need not know which machine holds the file — the provider manages the hardware and the backups.

Working with cloud storage involves a few standard actions. You upload a file to the account, and it can then be downloaded again on any device where you sign in. Many services offer synchronisation, in which a folder on the computer and the copy in the cloud are kept identical automatically, so an edit made on one device appears on the others. Files can be shared by link rather than as an email attachment, with permission usually set either to view-only or to allow editing.

The advantages fall into a neat list. Files can be reached from any device with an internet connection. The cloud copy survives if a laptop is lost, stolen or damaged, so it acts as a backup. Large files can be shared as links, avoiding attachment size limits. Several people can work on the same document, and space can be increased by paying for a larger plan instead of buying a new disk.

The limitations must appear in the same answer for full marks. Cloud storage needs an internet connection — without one, files that have not been made available offline cannot be opened. Your data sits on a company server, so privacy and security depend on that company and on the strength of your own password, which is why two-step verification is recommended. Free space is limited and continued use of a large amount costs money in rupees every month or year. If the service suffers an outage or the account is locked, access is lost until it is restored. The safest habit is to keep one copy on the device and one in the cloud.

In short: local storage is fast and entirely under your control, but is limited to one machine and is lost with it; cloud storage is reachable everywhere and survives hardware failure, but depends on a connection, a provider and your password discipline.

Download Server -&gt; your device Saving an admit card or a PDF from a website
Upload Your device -&gt; server Attaching a photo to an online form or putting a site on its host by FTP
Cloud storage Files on a provider server, reached over the Internet Google Drive, OneDrive, iCloud, Dropbox — quotas differ by provider
Sync Device folder = cloud folder An edit on one device appears on the others automatically
Backup rule One local copy + one cloud copy Protects a file against both device loss and account trouble
Remember
  • Downloading copies a file from a server to your device; uploading copies a file from your device to a server.
  • Home connections are usually asymmetric — upload speed is lower than download speed.
  • Cloud storage keeps files on a provider server, reachable from any device after signing in.
  • Synchronisation keeps a device folder and the cloud copy identical; sharing is done by link rather than attachment.
  • Advantages: access anywhere, automatic backup, easy sharing of large files, expandable space.
  • Limitations: needs internet, depends on provider security and your password, and extra space costs money.

Quick reference

Every term, tag and rule from this chapter in one place — screenshot it before your exam.

Network of networks
Internet
A service running on the Internet
WWW
Internet Service Provider
ISP
Transmission Control Protocol / Internet Protocol
TCP/IP
Mbps = megabits per second
SpeedMbps
192.168.1.10
IPv432 bits
8 hexadecimal groups separated by colons
IPv6128 bits
www . example . edu . in
Domain
protocol://domain/path/file
URL
domain name -&gt; IP address
DNS
Chrome, Firefox, Edge, Safari
Browser
Google, Bing, DuckDuckGo
Search engine
&lt;a href=...&gt;
Hyperlink
Domain name + server space
Hosting
Fixed file vs generated on request
Static vs dynamic
Web pages — ports 80 / 443
HTTP / HTTPS
File transfer — port 21
FTP
Sending mail — port 25
SMTP
Receiving mail — ports 110 / 143
POP3 / IMAP
Packets + addressing
TCP/IP
username@domain
Address
Carbon copy — visible
Cc
Blind carbon copy — hidden
Bcc
Inbox, Sent, Drafts, Spam, Trash
Folders
SMTP out, POP3/IMAP in
Mail protocols
Voice over Internet Protocol
VoIP
Cart -&gt; order -&gt; payment -&gt; delivery
E-commerce
NEFT, RTGS, IMPS, UPI
E-banking
One message -&gt; all members
E-group
Chat and video call
Synchronous
Server -&gt; your device
Download
Your device -&gt; server
Upload
Files on a provider server, reached over the Internet
Cloud storage
Device folder = cloud folder
Sync
One local copy + one cloud copy
Backup rule

Test yourself

Tap an answer to check it instantly — you'll see why it's right, and what to revise if it isn't.

0 correct · 0/12 answered
Q1 Internet vs WWW easy

Which statement correctly describes the relationship between the Internet and the World Wide Web?

Q2 DNS easy

What is the main function of DNS?

Q3 URL medium

In the URL https://www.school.edu.in/notices/exam.html, which part is the path?

Q4 Protocols easy

Which protocol is used to send an outgoing email message?

Q5 Protocols hard

A student opens the same email account on a phone and on a laptop and wants every message and folder to look the same on both. Which protocol should the account use?

Q6 Protocols medium

What does the S in HTTPS indicate?

Q7 Browser vs search engine easy

Which of these is a search engine and not a web browser?

Q8 Static vs dynamic medium

Which of the following is the best example of a dynamic web page?

Q9 Protocols medium

A website owner wants to copy a folder of HTML files from a computer to the web server. Which protocol is designed for this?

Q10 Email medium

A notice must go to 100 parents without any parent seeing the other addresses. Which field should hold the addresses?

Q11 IP address hard

Which of these cannot be a valid IPv4 address?

Q12 Uploading and downloading easy

A student attaches a scanned certificate to an online admission form on a college website. This action is an example of

NCERT solutions & previous-year questions

Step-by-step model answers — tap a question to reveal the full solution.

NCERT questions 8

1 Differentiate between the Internet and the World Wide Web.Internet vs WWW

Internet: a worldwide system of interconnected computer networks that communicate using the TCP/IP protocol suite. It is the infrastructure — cables, optical fibre, routers, mobile networks and the addressing system that lets any connected device reach any other.

World Wide Web: one service that runs on the Internet. It is a collection of linked documents called web pages, stored on web servers, written mainly in HTML, addressed by URLs and fetched by a browser using HTTP.

Three differences worth stating: the Internet is hardware and connections while the Web is information and content; the Internet existed before the Web, which was later developed as an application on top of it; and many internet services such as email (SMTP), file transfer (FTP) and VoIP calls work without using the Web at all. In short, the Web is a part of the Internet, not a synonym for it.

2 What is an ISP? Mention any three services provided by an ISP.ISP

An ISP (Internet Service Provider) is an organisation that provides internet access to homes, schools, offices and businesses, normally against a monthly or yearly charge in rupees.

Services commonly provided by an ISP:

  • Internet connection through broadband over cable or optical fibre, mobile data on a 4G or 5G network, or a leased line for offices.
  • Allotment of an IP address to the connection — usually dynamic for a home connection, and a static IP on request for an organisation that needs one.
  • Equipment and support, such as supplying or configuring the modem and router and attending to faults.
  • Extra services offered by some providers, for example email accounts, web hosting space or a bundled television service.
3 What is a domain name? Explain its parts with an example.Domain names

A domain name is the readable name by which a website is identified on the Internet, used in place of the numeric IP address of its server. Domain names are registered through a registrar for an annual fee and no two can be identical.

Read a domain name from right to left. For www.example.edu.in:

  • .in — the country-code top-level domain for India. Other examples are .uk and .au.
  • .edu — the domain type, showing the kind of organisation. Others in common use are .com (commercial), .org (organisation), .net (network) and .gov (government).
  • example — the second-level domain, the unique name registered by the owner.
  • www — the host name or sub-domain of the particular server within that domain.

Because computers actually route data by number, the DNS converts this name into the IP address of the server before the page can be fetched.

4 Define URL. Name its parts using the URL https://www.school.edu.in/results/class10.htmlURL

URL stands for Uniform Resource Locator. It is the complete address of a particular resource — a web page, an image or a document — on the World Wide Web, and it tells the browser both where the file is and how to fetch it.

Parts of the given URL:

  • https — the protocol (scheme) used to fetch the resource, here the secure form of HTTP.
  • www.school.edu.in — the domain name of the web server, including the host part www.
  • /results — the path, that is the folder on the server in which the file is stored.
  • class10.html — the file name of the web page requested.

A URL may also contain an optional port number after the domain name and a query string after a question mark, which passes information such as a search word to the server.

5 Distinguish between a web browser and a search engine, with two examples of each.Browser vs search engine

A web browser is application software installed on a computer or phone. Its job is to send a request to a web server using HTTP or HTTPS, receive the HTML in reply, and display the page with its text, images and links. Examples: Google Chrome, Mozilla Firefox (also Microsoft Edge, Safari, Opera).

A search engine is a website — a service reached through a browser — that maintains an index of pages on the Web and returns a list of links matching the keywords typed by a user. It works by crawling pages with programs called crawlers or spiders, indexing what they find, and ranking the results for each query. Examples: Google Search, Bing (also DuckDuckGo, Yahoo Search).

Key difference: a browser is software that displays a page; a search engine is a service that helps you find which page to display. You need a browser to use a search engine, but not the other way round. The two are easily confused because most browsers let the address bar act as a search box and open a search page at start-up — but which engine that is depends on the browser and its settings.

6 What is the difference between a static and a dynamic web page? Give one example of each.Static vs dynamic pages

Static web page: the HTML file stored on the web server is sent to every visitor exactly as it is. Its content changes only when the author edits the file by hand, so every visitor sees the same page at the same time. It is faster to serve, cheaper to host and simpler to create. Example: the About Us or School Rules page of a school website.

Dynamic web page: the page is generated at the moment it is requested, usually by a program running on the server that reads a database. Its content can therefore differ with the user, the time or the data, without anyone editing a file. It needs programming and a database, and takes slightly longer to serve. Example: the seat-availability page on IRCTC for a chosen train and date, or a result page that displays marks after a roll number is entered.

A one-line answer: a static page shows fixed, stored content, while a dynamic page shows content created for each request.

7 Explain the difference between Cc and Bcc in an email. When would you prefer Bcc?Email

Cc stands for carbon copy. Addresses placed in the Cc field receive a copy of the message for information, and the Cc list is visible to every recipient of that message.

Bcc stands for blind carbon copy. Addresses placed in the Bcc field also receive a copy, but they are hidden from all other recipients, so nobody else knows that those people were sent the message.

When Bcc is preferred: when one message must go to a large number of people who do not know one another — for example a circular sent by a school to two hundred parents. Using Bcc keeps every family address private from the rest, reduces the risk of the list being misused for spam, and avoids Reply All floods. Cc remains the right choice when the recipients should know who else has been informed, for example when a class teacher copies the coordinator on a reply to a parent.

8 What is cloud storage? State three advantages and two limitations.Cloud storage

Cloud storage is a service in which files are stored on servers maintained by a provider and reached over the Internet, rather than only on the local disk of the user device. The provider looks after the hardware, backups and repairs. Google Drive, Microsoft OneDrive, Apple iCloud and Dropbox are examples; free space and paid plans differ from provider to provider.

Advantages:

  • Files can be reached from any device with an internet connection after signing in.
  • The cloud copy acts as a backup, so work survives if a device is lost, stolen or damaged.
  • Large files can be shared by sending a link, avoiding email attachment size limits, and several people can work on the same document.

Limitations:

  • An internet connection is needed; files not marked for offline use cannot be opened without one.
  • Data rests on a company server, so privacy and security depend on that provider and on the strength of your password. Free space is limited and extra space costs money.

Previous-year board questions 6

Q1 Expand the following abbreviations: (i) URL (ii) FTP (iii) IMAP (iv) VoIP 2 marks
  • URL — Uniform Resource Locator
  • FTP — File Transfer Protocol
  • IMAP — Internet Message Access Protocol
  • VoIP — Voice over Internet Protocol
Q2 What is a home page? 1 mark

The home page is the first or main page of a website — the page that opens when only the domain name of the site is typed in a browser. It normally carries the menu and the links through which the other pages of the website are reached.

Q3 Differentiate between POP3 and IMAP. Which one would you recommend to a user who reads mail on a phone as well as a laptop, and why? 3 marks

POP3 (Post Office Protocol version 3) downloads messages from the mail server to one device and, in its traditional setting, removes the copy kept on the server. Mail is then read offline on that device alone.

IMAP (Internet Message Access Protocol) also receives mail, but the messages stay on the server and the device only synchronises a view of them, so folders, read marks and deletions appear the same everywhere.

Recommendation: IMAP, because the account is opened on two devices. With IMAP a message read or filed on the laptop shows as read or filed on the phone as well, whereas POP3 could pull the message down to one device and leave the other without it. POP3 remains useful for a single device with limited or intermittent connectivity, since the mail is stored locally. Note that both are used to receive mail — sending is always done by SMTP.

Q4 Name the protocol you would use in each situation and give one reason: (i) opening a school website (ii) making an online fee payment (iii) uploading website files to a hosting server (iv) sending an email 3 marks
  • Opening a school website — HTTP (HyperText Transfer Protocol), because it is the set of rules by which a browser requests a web page and a web server returns it.
  • Making an online fee payment — HTTPS (HyperText Transfer Protocol Secure), because it adds SSL/TLS encryption so that card, UPI or password details cannot be read if the traffic is intercepted.
  • Uploading website files to a hosting server — FTP (File Transfer Protocol), because it is designed to transfer files and whole folders between a client and a server.
  • Sending an email — SMTP (Simple Mail Transfer Protocol), because it is the protocol that carries outgoing mail from the sender to the mail servers.
Q5 Explain any five services provided by the Internet, other than the World Wide Web. 5 marks
  1. Email (electronic mail): sending a message, with files attached if needed, from one mailbox to another. It is asynchronous — the message waits on the server until the recipient reads it — which makes it the accepted medium for formal communication.
  2. Chat or instant messaging: real-time exchange of typed messages between users who are online at the same time, suited to short, quick conversations rather than formal ones.
  3. VoIP (Voice over Internet Protocol): voice calls carried as data packets over the Internet instead of over the telephone network, which makes long-distance calls far cheaper, though quality depends on connection speed.
  4. Video conferencing: a live meeting in which people at different places see and hear one another through cameras, microphones and internet connections. Schools use it for online classes; it saves travel time and cost.
  5. E-commerce: buying and selling goods and services online. The customer adds items to a cart and pays by UPI, net banking, card or cash on delivery. The shop is open at all hours and prices can be compared easily.

Other acceptable services include e-banking (balance checks and NEFT, RTGS, IMPS or UPI transfers), e-learning, e-groups, social networking, file transfer through FTP and cloud storage.

Q6 Differentiate between uploading and downloading, with one example of each from a student daily use. 2 marks

Downloading is copying a file from a remote server on to your own device, so the data travels from the server to you. Example: saving an admit card or a chapter PDF from a board or school website.

Uploading is copying a file from your own device to a remote server, so the data travels from you to the server. Example: attaching a scanned photograph or certificate to an online admission form, or submitting an assignment to a school portal.

A useful extra point: on most home connections the download speed is higher than the upload speed, so sending a large file usually takes longer than receiving one of the same size.

Part of Priodemy for School

Interactive Maths & Science — free with every school on Priodemy EduSuite. Explore more chapters and labs on the Priodemy for School hub.

Ask AI