Computing Revision
Computing Revision
Term one
Revision sheet
Media Balance: Using media in a way that feels healthy and in balance with other life
activities (family, friends, school, hobbies, etc.).
Targeted Advertising: When apps or websites use information that they have collected
about you to show you certain types of advertisements.
Social Media: Websites and applications that enable users to create and share content or to
participate in social networking.
• Snapchat is now the most popular app and use of Facebook has declined sharply.
• Building real relationships with people is much easier face to face. Those
relationships are stronger and last longer.
Public Domain: Creative work that's not copyrighted and free to use without permission.
Fair Dealing: The circumstances in which copyrighted works can be used without
permission from the copyright owner.
Unit (2): Web Design
A website is a collection of interconnected web pages that are accessible through the
internet.
Web pages are files that contain text, images, videos, and other multimedia elements.
Web pages can be accessed through web browsers like Google Chrome or Safari.
HTML (HyperText Markup Language) is the core language for creating web pages. It
defines the structure and content of a web page, using tags to markup text and images,
as well as other elements.
Content is placed between the opening and closing tags of different elements to define
its purpose and layout.
While HTML defines the structure and content, its presentation is usually controlled by
CSS (Cascading Style Sheets).
A simple web page can be designed using basic HTML tags, like headings, paragraphs,
lists, images, and links. Each tag has its purpose in defining the structure and content of
the web page.
Define the basic structure of the web page using tags like <html>, <head>, <body>, and
<title> to create a well-organized page.
Use CSS to add style and formatting to the elements on the page, for example, changing
colours, fonts, sizes, and layouts.
To add an image to a web page, use the <img> tag with a "src" attribute to specify the
image source and an "alt" attribute for alternative text if the image doesn't load.
To create a hyperlink, use the <a> tag with a "href" attribute that specifies the URL to
link to. Put the text that you want to make into a link between the opening and closing
tags.
<html>
• The root element of an HTML document, containing all other elements.
Example:
<html>
<head> </head>
<body> </body>
</html>
<head>
• Contains meta-information about the document (not displayed on the page).
Example:
<head>
<title>Page Title</title>
</head>
<body>
• Contains the visible content of the web page.
Example:
<body>
<h1>Hello World!</h1>
<p>Welcome to my website.</p>
</body>
2. Heading Tags
<h1> to <h6>
• Represent headings, with <h1> being the largest and <h6> the smallest.
Example:
o <h1>Main Heading</h1>
o <h2>Subheading</h2>
<img>
• Embeds an image.
Example:
<img src="image.jpg" alt="Description">
5. List Tags
Ordered List (<ol>)
• Creates a numbered list.
Example:
<ol>
<li>First Item</li>
<li>Second Item</li>
</ol>
<tr>
• Defines a row in a table.
<td>
• Defines a cell in a row.
<th>
• Defines a table header.
7. Input and Form Tags
<form>
• Defines a form for user input.
Example:
<form action="submit.php" method="post">
<input type="text" name="username">
<button type="submit">Submit</button>
</form>
<input>
• Defines an input field.
Example:
<input type="text" placeholder="Enter text">
<button>
• Defines a clickable button.
Example:
<button>Click Me</button>
8. Multimedia Tags
<video>
• Embeds a video.
Example:
<video controls>
<source src="video.mp4" type="video/mp4">
</video>
<audio>
• Embeds audio content.
Example:
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
</audio>
• The <a> tag in HTML is used to create hyperlinks, allowing users to navigate from
one page to another or from one location on a page to another. It's one of the
fundamental elements of the web, enabling interconnectivity between web
pages.
2. Key Features
• Paragraphs are automatically spaced out with default margins provided by
browsers.
• Section breaks in paragraphs allow you to divide content into meaningful sections for
clarity and organization.
• Use the <hr> tag to create a visual separator between sections
Example:
<p>This is the first section of text.</p>
<hr>
<p>This is the second section of text.</p>
Example:
body {
background-color: lightblue;
}
3. Setting a Background Image
Property: background-image
The background-image property sets an image as the background of an element.
Syntax:
selector {
background-image: url("image-path");
}
Example of adding a background image:
body {
background-image: url("background.jpg");
}
Unit(3) Networks
Components of a Network
Definition:
An ISP is a company or organization that provides users with access to the Internet. ISPs
offer a variety of services, including broadband, DSL, fiber-optic, or wireless connections.
Explanation:
Examples:
Definition:
Explanation:
• A student in the UK accessing a website hosted in the USA is using the global
network to retrieve data.
Definition:
A WAN is a network that spans a large geographical area, often connecting multiple
smaller networks like LANs (Local Area Networks).
Explanation:
• WANs are used by businesses and organizations to link branch offices and data
centers over cities, countries, or continents.
• They rely on public or private infrastructure, including leased lines, satellite links,
or VPNs.
Examples:
Definition:
A LAN is a network confined to a small geographical area, like a building or campus, used
for sharing resources among connected devices.
Explanation:
Example:
Definition:
A MAN is a network that connects multiple LANs within a metropolitan area, such as a
city or campus.
Explanation:
• It provides high-speed connectivity over a wider area than a LAN but smaller
than a WAN.
• Typically used by city governments, universities, or large organizations.
Example:
Definition:
Explanation:
Example:
Definition:
Explanation:
• It acts as the Internet’s phonebook, ensuring that when you type a website URL,
your browser connects to the correct server.
Example:
Definition:
Bandwidth refers to the maximum amount of data that can be transmitted over a
network in a given amount of time, usually measured in Mbps (Megabits per second) or
Gbps (Gigabits per second).
Explanation:
• Higher bandwidth allows faster data transfer and better performance for
activities like streaming and downloading.
Example:
9. Router
Definition:
A router is a network device that connects multiple networks and directs data packets
between them.
Explanation:
• Routers enable communication between local networks (e.g., LAN) and external
networks (e.g., the Internet).
Example:
Definition:
A VPN extends a private network across a public network, encrypting the connection to
provide security and privacy.
Explanation:
Example:
Definition:
Networks are categorised based on their size, geographic scope, and purpose. The main
types include PAN, LAN, MAN, and WAN.
Key Types:
Comparison Table:
Definition:
Network devices are hardware components that facilitate communication and resource
sharing in a network.
Key Devices:
• Router:
Directs data packets between networks. Essential for connecting a LAN to the
Internet.
Example: A home Wi-Fi router.
• Switch:
Connects devices within a LAN, enabling data to flow between them efficiently.
Example: Office network switches.
• Hub:
Similar to a switch but less intelligent, forwarding data to all connected devices.
Example: Basic home network hubs.
• Access Point:
Enables wireless devices to connect to a wired network.
Example: Wi-Fi access points in public places.
• Server:
A computer dedicated to managing network resources, such as files or email.
Example: A file server in an office.
• Client:
A device that accesses resources from a server.
Example: Laptops in an office network.
Diagram Example:
3. Network Protocols
Definition:
Network protocols are rules and conventions for data communication between devices.
Key Protocols:
Explanation of HTTPS:
• HTTPS encrypts data using SSL/TLS, protecting sensitive information like passwords
or bank details from interception.
4. Troubleshooting Network Issues
Definition:
2. Restart Devices:
Reboot routers, switches, or computers to refresh connections.
3. Verify IP Configuration:
Ensure devices have valid IP addresses for network access.
5. Update Firmware/Drivers:
Ensure network devices have the latest software updates.
Summary Table
Benefits of a Network