Garantie de satisfaction à 100% Disponible immédiatement après paiement En ligne et en PDF Tu n'es attaché à rien
logo-home
IT Theory IEB Grade 11 2021-2022 Complete Notes 22,90 €   Ajouter au panier

Interview

IT Theory IEB Grade 11 2021-2022 Complete Notes

4 revues
 412 vues  12 fois vendu
  • Cours
  • Établissement
  • Book

**FULL EDITION** A comprehensive summary of IT Theory on a Grade 11 Level. It contains all the necessary information in a colourful, table format. Diagrams of complex topics have been included. All information has been typed for improved legibility. These notes have been used by hundreds of learner...

[Montrer plus]

Aperçu 4 sur 87  pages

  • 23 octobre 2021
  • 87
  • 2021/2022
  • Interview
  • Inconnu
  • Inconnu
  • 200

4  revues

review-writer-avatar

Par: elizabethanderson • 1 année de cela

review-writer-avatar

Par: robinolifant • 1 année de cela

review-writer-avatar

Par: karenrafferty • 2 année de cela

reply-writer-avatar

Par: Zeyni • 2 année de cela

Thank you so much!

review-writer-avatar

Par: dom59 • 1 année de cela

reply-writer-avatar

Par: Zeyni • 1 année de cela

Thanks!

avatar-seller
Zeyn Mahomed LV 2021



Adapted from - EXPLORING IT: THEORY Gr 11 2ND ED (Funworks Publication)

Complete Notes
IT Theory - Grade 11
LU1 Data Representation and Boolean Logic
1. Word Size
2. Possible Combinations of a Fixed Number of Bits
3. Binary Addition
4. Representing Integers in a Fixed Number of Bits
5. Representing Real Numbers
6. Compression Techniques
7. Screen Resolution
8. Truth Tables

LU2 Hardware
1. CPU Design
2. RAM
3. Motherboard
4. Secondary Storage
5. Other Types of Caching

LU3 System Software
1. Start-Up and Boot Software
2. Interrupts
3. Processing Techniques
4. Virtual Memory
5. Translators
6. Machine Cycle

LU4 Local Area Networks
1. Overview of Physical Aspects
2. Bounded Connection Media
3. Unbounded Connection Media
4. Broadcast vs Point-to-Point Communication
5. Topology
6. Ethernet

2

,Zeyn Mahomed LV 2021




7. Network Addressing
8. Internet Protocols
9. LAN Network Devices
10. OSI Model
11. Wireless LAN

LU5 Wide Area Networks
1. Fibre Optic Backbone
2. WAN
3. Devices
4. Transmission
5. Internet Connection Technologies
6. Protocols

LU6 Internet
1. Evolution of the Internet
2. Web-Based Applications
3. Mobile Websites
4. Mobile Applications
5. Design Factors for Mobile Technology
6. Plug-Ins and Extensions
7. Search Engines
8. Using Multimedia Online
9. Compression Technology

LU7 Errors, Threats and Security
1. Sources of Errors
2. Solutions for Errors
3. Database Management System Integrity
4. Threats to Computer Systems
5. Security Solutions

LU8 Social Implications
1. Effect on Workplace and Employment Practices
2. Effects of Computer Crime
3. Safeguards against Computer Crimes
4. Evaluating Information


3

,Zeyn Mahomed LV 2021




LU1 - Data Representation and Boolean Logic
1. Word Size

Word Size ● The number of bits that the CPU of a computer can work with at one time -
amount of data that a CPU register can hold and manipulate at any one time.
● A word is a unit of data defining the number of bits that move around a
computer from one component to another. They are stored in components and
are processed.
● Buses (transporters of data) are built with 32 bits (4 bytes) and 64 bits (8 bytes).
● CPUs, components and OS are built to accommodate the bus sizes and allow the
computer to function as efficiently as possible.

2. Possible Combinations of a Fixed Number of Bits

Possible ● 0 = “off”, 1 = “on”
Combinations ● Bits are grouped in multiples of 8 in registers or buses
● Number of combinations is calculated as 2n where n is the number of bits: (24) =
16 combinations

3. Binary Addition

Rules
Carry: 1
02 02 12 12 1 + 1, the answer cannot be 2, so a 0
is written down and the 2 is carried
+ 02 + 12 + 02 + 12
as 1 in the column to the left
______ ______ ______ _______
02 12 12 1 02


Steps Add 47 and 31 by converting them to binary, then convert them to decimal after
addition.

Step 1: Step 2: Step 3:
Convert to Binary: Add: Convert to Binary:
Binary to Decimal
Decimal to Binary
● Continuously divide by 2 ● Order the binary number
in columns with
● Write down the 111111 increasing powers of 2
remainder 1011112
● Going from right to left,
● Repeat until the quotient + 111112
starting at 0
is 0 __________
= 10011102 ● Multiply the bit by the
● Read the remainders
power of 2 in its column
from bottom to top
10011102 = 7810
4710 = 1011112
3110 = 111112



4

, Zeyn Mahomed LV 2021




4. Representing Integers in a Fixed Number of Bits

Representing Integers ● All numbers that are stored in a computer are represented by a fixed
number of bits usually dictated by the word size
● Integers and their subtypes (byte, short, long) are all allocated a fixed
number of bits
● By limiting the number of bits to store the number, the number can no
longer be infinite, but has a minimum and maximum value associated
with the type - negative numbers cannot be represented (unsigned)

Positive Numbers ● Uses all of the allocated bits to represent the value of the number
● Can only be a positive whole number or 0
● We can write the number with leading 0s to match the required number
of bits

Negative Numbers ● The first bit is used to represent the sign of the number (0 = +; 1 = -)
● Can be any whole number
-9+9=0 Sign and Size
● The left-most bit indicates the sign (0 = +ve, 1 = -ve)
Sign and Size ● Cannot be used in arithmetic

Represent -47 in 8 bits using Sign and Size
0 0 0 0 1 0 0 12
+ 1 0 0 0 1 0 0 12 Step 1: Step 2: Step 3:
________________ Convert Decimal to Add extra bits to Add a 1 to the first bit to
1 0 0 1 0 0 1 02 Binary: make up 8 bits: show the number is negative:
≠ 010
4710 = 1011112 001011112 -4710 = 101011112

Two’s Complement Two’s Complement
● 0 will be represented as 000000002
● -1 will be represented as 111111112
0 0 0 0 1 0 0 12 ● Can be used in arithmetic
+ 1 1 1 1 0 1 1 12
________________ Represent -47 in 8 bits using Two’s Complement
1 0 0 0 0 0 0 0 02 If we add 47 in binary and the answer we get below (-47 in binary) we get
= 010 1000000002

Step 1: Step 2: Step 3: Step 4:
(Ignore 9th bit - not Convert Add extra One’s Complement Two’s Complement
considered an error) Decimal to bits to (drop the minus sign (add 1):
Binary make up 8 and swap 1s and 0s):
bits: 110100002
001011112 + 12
-4710 -ve = ______________
= -1011112 001011112 110100002 110100012




5

Les avantages d'acheter des résumés chez Stuvia:

Qualité garantie par les avis des clients

Qualité garantie par les avis des clients

Les clients de Stuvia ont évalués plus de 700 000 résumés. C'est comme ça que vous savez que vous achetez les meilleurs documents.

L’achat facile et rapide

L’achat facile et rapide

Vous pouvez payer rapidement avec iDeal, carte de crédit ou Stuvia-crédit pour les résumés. Il n'y a pas d'adhésion nécessaire.

Focus sur l’essentiel

Focus sur l’essentiel

Vos camarades écrivent eux-mêmes les notes d’étude, c’est pourquoi les documents sont toujours fiables et à jour. Cela garantit que vous arrivez rapidement au coeur du matériel.

Foire aux questions

Qu'est-ce que j'obtiens en achetant ce document ?

Vous obtenez un PDF, disponible immédiatement après votre achat. Le document acheté est accessible à tout moment, n'importe où et indéfiniment via votre profil.

Garantie de remboursement : comment ça marche ?

Notre garantie de satisfaction garantit que vous trouverez toujours un document d'étude qui vous convient. Vous remplissez un formulaire et notre équipe du service client s'occupe du reste.

Auprès de qui est-ce que j'achète ce résumé ?

Stuvia est une place de marché. Alors, vous n'achetez donc pas ce document chez nous, mais auprès du vendeur Zeyni. Stuvia facilite les paiements au vendeur.

Est-ce que j'aurai un abonnement?

Non, vous n'achetez ce résumé que pour 22,90 €. Vous n'êtes lié à rien après votre achat.

Peut-on faire confiance à Stuvia ?

4.6 étoiles sur Google & Trustpilot (+1000 avis)

76669 résumés ont été vendus ces 30 derniers jours

Fondée en 2010, la référence pour acheter des résumés depuis déjà 14 ans

Commencez à vendre!
22,90 €  12x  vendu
  • (4)
  Ajouter