🌐 Networking — Class 10 Computer Applications

Internet, WWW, protocols, email, browsers, remote login, and file transfer

1. Internet & World Wide Web

📖 Key Terms

Internet: A global network of interconnected computers that communicate using standard protocols (TCP/IP). Often called the "network of networks."

WWW (World Wide Web): A system of interlinked hypertext documents (web pages) accessed via the Internet using a browser. WWW is a service that runs ON the Internet — not the same as the Internet itself!

Web Server: A computer that stores and serves web pages. When you type a URL, the web server sends the requested page to your browser.

Web Client: Your computer/device (with a browser) that requests web pages from the server.

Website: A collection of related web pages hosted at a domain (e.g., www.ncert.nic.in)

Web Page: A single HTML document displayed in a browser

Blog: A regularly updated website where an individual posts opinions/articles (web log)

Newsgroup: An online discussion forum where users post and reply to messages on specific topics

2. Web Addresses & Email

📖 URL Structure

URL (Uniform Resource Locator): The address of a web page.

Format: protocol://domain-name/path

Example: https://www.ncert.nic.in/textbook/textbook.htm

https:// — protocol used

www.ncert.nic.in — domain name

/textbook/textbook.htm — path to the specific file

Email Address: username@domain.extension (e.g., student@school.edu.in)

3. Internet Protocols

ProtocolFull FormUse
TCP/IPTransmission Control Protocol / Internet ProtocolFoundation of Internet — breaks data into packets and routes them
HTTPHyperText Transfer ProtocolTransferring web pages (unsecured)
HTTPSHTTP SecureEncrypted, secure version of HTTP (banking, shopping)
SMTPSimple Mail Transfer ProtocolSending emails from client to server
POP3Post Office Protocol v3Receiving emails — downloads from server to local device
IMAPInternet Message Access ProtocolReceiving emails — keeps them on server (access from multiple devices)

4. Remote Login & File Transfer Protocols

ProtocolFull FormUse
FTPFile Transfer ProtocolUpload/download files to/from a remote server (not encrypted)
SFTPSSH File Transfer ProtocolSecure file transfer (encrypted via SSH)
SCPSecure Copy ProtocolSecurely copy files between hosts using SSH
SSHSecure ShellSecurely log in and run commands on a remote computer (encrypted)
TELNETTeletype NetworkRemote login to a computer (not encrypted — obsolete)

5. Web Browsers

  • Web Browser: Software to access and display web pages — Chrome, Firefox, Edge, Safari, Opera
  • Search Engine: A website to search the Internet — Google, Bing, DuckDuckGo
  • Downloading: Copying a file from a remote server to your computer
  • Uploading: Copying a file from your computer to a remote server
  • HTML (HyperText Markup Language): Language used to create web pages

🔑 Quick Revision

  • Internet ≠ WWW — Internet is the infrastructure; WWW is a service on it
  • SMTP = sends email | POP3/IMAP = receives email
  • HTTP = unsecured web | HTTPS = secured web (padlock in browser)
  • FTP = file transfer (no encryption) | SFTP/SCP = secure file transfer
  • TELNET = old remote login (no encryption) | SSH = secure remote login