Communication and information systems – Week 6 focus
Download the Lessonotes Mobile South Africa app for faster lesson access on Android and iPhone.
Subject: Technology
Class: Grade 9
Term: 2nd Term
Week: 6
Theme: General lesson support
This page supports the lesson note with a companion video and a short classroom-ready summary.
For class groups and homework, share this lesson page so learners also get the summary, objectives, and full lesson context.
This week, we delve into the fascinating world of Communication and Information Systems (CIS). In today’s South Africa, access to information and effective communication are more crucial than ever. From accessing online learning resources to connecting with family across provinces, CIS plays a vital role in our daily lives. Understanding how these systems work allows us to use them effectively, critically evaluate information, and even contribute to their development.
Furthermore, understanding CIS is critical for navigating the modern job market, where digital literacy is highly valued. We will focus on data representation and basic data processing.
2. 1.
Data Representation: Computers understand data in the form of binary digits, or bits. A bit is either a 0 or a
1. Humans, however, work with numbers in the decimal system (base-10) and with characters. We need to understand how these are converted to allow computers to process human-understandable information.
Binary Numbers (Base-2): The binary system uses only two digits: 0 and
1. Each position in a binary number represents a power of
2. Example: 1011 (binary) = (1 2³) + (0 2²) + (1 2¹) + (1 * 2⁰) = 8 + 0 + 2 + 1 = 11 (decimal)
Decimal Numbers (Base-10): The system we use every day, with digits 0 through
9. Each position represents a power of
1
0. Example: 253 (decimal) = (2 10²) + (5 10¹) + (3 10⁰) = 200 + 50 + 3 = 253 Converting Decimal to Binary: Repeatedly divide the decimal number by 2, noting the remainders. The remainders, read in reverse order, form the binary equivalent.
Example: Convert 25 (decimal) to binary: 25 / 2 = 12 remainder 1 12 / 2 = 6 remainder 0 6 / 2 = 3 remainder 0 3 / 2 = 1 remainder 1 1 / 2 = 0 remainder 1 Binary equivalent: 11001 Character Representation (ASCII and Unicode): Characters (letters, numbers, symbols) are represented by numerical codes. ASCII (American Standard Code for Information Interchange) is a common standard that uses 7 bits to represent 128 characters. Unicode is a more comprehensive standard that can represent a much wider range of characters, including those from different languages. Each character is assigned a unique numerical value.
Example: In ASCII, the letter 'A' is represented by the decimal number 65 (binary 01000001). The letter 'a' is represented by 97 (binary 01100001).
Example: Unicode is necessary to represent Afrikaans characters like 'ê' or isiZulu characters. 2.
2. Basic Data Processing (IPO Model): Data processing is the transformation of raw data into meaningful information. The fundamental model for this is the Input-Process-Output (IPO) model: Input: Raw data that is entered into the system. This could be anything from keyboard input to sensor readings.
Example: A student typing their name and ID number into a school database.
Process: The operations performed on the input data. This could involve calculations, sorting, filtering, or any other manipulation.
Example: The school database system verifying the student's ID number and matching it to their records.
Output: The processed information that is presented to the user or another system. This could be a report, a display on a screen, or a control signal.
Example: The school database displaying the student's profile and grades on the administrator's computer. 2.
3. Data Types: Data types classify data based on its kind and the operations that can be performed on it.
Common data types include: Integer: Whole numbers (positive, negative, or zero) without decimal points.
Example: 5, -10,
0. Floating-point: Numbers with decimal points.
Example: 3.14, -2.5, 0.
0. Character: Single letters, digits, or symbols.
Example: 'A', '5', '$'.
Boolean: A logical value that can be either true or false. Used for decision-making in programs. 2.
4. Data Storage Units: Data is stored in digital devices using different units of measurement: Bit: The smallest unit of data (0 or 1).
Byte: 8 bits. One byte can represent a single character.
Kilobyte (KB): 1024 bytes. (Approximately a page of text)
Megabyte (MB): 1024 kilobytes. (Approximately a small book or a few photos)
Gigabyte (GB): 1024 megabytes. (Approximately a DVD movie or many documents)
Terabyte (TB): 1024 gigabytes. (Approximately a large hard drive)