Skip to main content

🌐 CIE IGCSE Computer Science – The Internet and the World Wide Web

This topic explains the structure of the internet, how the world wide web (WWW) works, URLs, HTTP/HTTPS, web browsers, web page retrieval, and cookies.

1️⃣ Internet vs World Wide Web

FeatureInternetWorld Wide Web (WWW)
DefinitionGlobal network of interconnected computers and devicesCollection of websites and web pages accessed via the internet
FunctionProvides infrastructure for communicationUses the internet to deliver content (websites)
ExampleRouters, IP addresses, network cablesGoogle, Wikipedia, YouTube

Key point: The internet is the hardware/network infrastructure, while the WWW is a service that runs on it.

2️⃣ Uniform Resource Locator (URL)

Definition:

A URL is a text-based address used to locate a specific web page on the internet.

Structure:

https://www.example.com/folder/page.html
| | | |
|protocol|domain |path/file|

  • Protocol: http:// or https://
  • Domain name: www.example.com – human-readable address
  • Path & filename: /folder/page.html – location of the file on the server

Example:
https://www.wikipedia.org/wiki/Physics

  • Protocol: HTTPS
  • Domain: wikipedia.org
  • Path/file: /wiki/Physics

3️⃣ HTTP and HTTPS

FeatureHTTPHTTPS
Stands forHypertext Transfer ProtocolHypertext Transfer Protocol Secure
PurposeTransfers web pages from server to clientTransfers web pages securely (encrypted)
SecurityData is sent as plain textData is encrypted using SSL/TLS
UsePublic websitesBanking, login pages, online shopping

Key point: HTTPS protects sensitive information like passwords, credit card numbers.

4️⃣ Web Browser

Definition:

Software that allows a user to access, retrieve, and display web pages.

Main Purpose:

  • Render HTML and display web content.

Common Functions:

  • Storing bookmarks/favourites
  • Recording user history
  • Allowing multiple tabs
  • Storing cookies
  • Navigation tools (Back/Forward buttons)
  • Address bar for URLs

Examples:

  • Google Chrome, Mozilla Firefox, Microsoft Edge, Safari

5️⃣ How Web Pages Are Located, Retrieved, and Displayed

Step-by-Step Process:

  1. User enters URL in browser’s address bar.
  2. Domain Name System (DNS) converts the domain name to an IP address of the web server.
  3. Browser sends HTTP/HTTPS request to the web server at that IP address.
  4. Web server locates HTML file (and other resources: CSS, images, scripts).
  5. Server sends response (HTML, CSS, JavaScript) back to browser.
  6. Browser renders web page using HTML and displays it on the device.

Key Roles:

ComponentRole
Web browserSends requests, renders HTML, displays pages
DNSConverts domain name → IP address
Web serverStores and serves web pages/files
HTMLLanguage used to structure web page content

6️⃣ Cookies

Definition:

Small files stored on a user’s device by a web browser containing information about the user’s interaction with a website.

Types of Cookies:

TypeDurationPurpose
Session cookiesTemporary, deleted when browser closesTrack user session, e.g., online shopping cart
Persistent cookiesStored on device for set timeSave login credentials, preferences, settings

Uses of Cookies:

  • Save personal details for forms
  • Track user preferences (language, theme)
  • Hold items in online shopping carts
  • Store login credentials

Security note: Cookies are not programs, but can be used to track online activity.

🧠 Key Terms

TermDefinition
InternetGlobal network infrastructure connecting computers
World Wide WebCollection of web pages accessed via the internet
URLText-based address to locate a web page
HTTPProtocol for transferring web pages (not encrypted)
HTTPSSecure protocol using encryption
Web browserSoftware to access, retrieve, and display web pages
DNSConverts domain names into IP addresses
Web serverComputer that stores and serves web pages
HTMLLanguage to structure web content
CookiesFiles storing user information and preferences

📝 Exam Tips

  1. Always distinguish internet vs WWW – infrastructure vs content.
  2. When describing how a web page is retrieved, mention:
    • Browser → DNS → IP address → Web server → HTML → Render.
  3. Explain HTTP vs HTTPS in terms of security.
  4. Include examples for cookies (shopping carts, login credentials).
  5. Use diagrams where possible for browser-DNS-server interaction.
  6. Mention both session and persistent cookies and their purpose.

⭐ Quick Summary

  • Internet: network infrastructure
  • WWW: websites/web pages accessed via internet
  • URL: address of web page (protocol + domain + path/file)
  • HTTP: transfers pages; HTTPS: secure/encrypted
  • Web browser: retrieves, renders, displays pages; stores cookies, history, bookmarks
  • Cookies: store user info; session (temporary) or persistent (long-term)