CIT PowerPoint presentation Group 4. Unit 1, Chapter 2 Basic Concept on Data DATA AND INFORMATION What is data? Data consists of all sorts of unorganised.

Slides:



Advertisements
Similar presentations
A-Level Computing#BristolMet Session Objectives#8 express numbers in binary, octal and hexadecimal explain the use of code to represent a character set.
Advertisements

Commercial Data Processing Lesson 3: Data Validation.
3.1 Data and Information –The rapid development of technology exposes us to a lot of facts and figures every day. –Some of these facts are not very meaningful.
Digital Fundamentals Floyd Chapter 2 Tenth Edition
1.6 Signed Binary Numbers.
More to Learn Check digit –It is used to check whether a number is valid. –Both ISBN and Hong Kong Identity Card numbers contain a check digit for data.
Hexadecimal and ASCII Lesson Objective: Understand the purpose of ASCII and how to use it. Lesson Outcome: Convert between Hexadecimal and ASCII Convert.
Digital Logic Chapter 2 Number Conversions Digital Systems by Tocci.
Bits, Bytes, KiloBytes, MegaBytes, GigaBytes & TeraBytes.
RNJ 10/02/091 3 Computing System Fundamentals 3.6 Errors Prevention and Detection.
Lecture 6 Topics Character codes Error Detection and Correction
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
GCSE ICT Checking data. Why do errors happen? Computers do not make mistakes. However if incorrect data is put in errors happen. In ICT this is called.
3.2 Data Checking.
EX_01.1/46 Numeric Systems. EX_01.2/46 Overview Numeric systems – general, Binary numbers, Octal numbers, Hexadecimal system, Data units, ASCII code,
Chapter 3 Section 1 Number Representation Modern cryptographic methods, unlike the classical methods we just learned, are computer based. Representation.
CS151 Introduction to Digital Design
Information Representation. Digital Hardware Systems Digital Systems Digital vs. Analog Waveforms Analog: values vary over a broad range continuously.
Logic Design Dr. Yosry A. Azzam. Binary systems Chapter 1.
Data entry: Validation
Checking data GCSE ICT.
Checking data Chapter 7 Prepared by:Sir Mazhar Javed.
Information Processing and Presentation by Rico Yu.
Objectives of Control The objectives of control are:  To ensure that all data are processed  To preserve the integrity of maintained data  To detect,
Computer Systems Architecture Copyright © Genetic Computer School 2008 CSA 1- 0 Lesson 1 Number System.
1 EENG 2710 Chapter 1 Number Systems and Codes. 2 Chapter 1 Homework 1.1c, 1.2c, 1.3c, 1.4e, 1.5e, 1.6c, 1.7e, 1.8a, 1.9a, 1.10b, 1.13a, 1.19.
System Development Lifecycle Verification and Validation.
Binary Values and Number Systems
CISC1100: Binary Numbers Fall 2014, Dr. Zhang 1. Numeral System 2  A way for expressing numbers, using symbols in a consistent manner.  " 11 " can be.
AS computing Validation and verification. Introduction It is important to maintain the integrity of any database of information. Any data item must always.
Data Representation Conversion 24/04/2017.
THE BINARY SYSTEM.
Data Representation, Number Systems and Base Conversions
Verification & Validation. Batch processing In a batch processing system, documents such as sales orders are collected into batches of typically 50 documents.
Binary System Presented by Mr. Wilhelmi Internal Representation of Data Input Input  Data that is put into the computer for processing Data Data  The.
Number Systems by Dr. Amin Danial Asham. References  Programmable Controllers- Theory and Implementation, 2nd Edition, L.A. Bryan and E.A. Bryan.
Data Representation. What is data? Data is information that has been translated into a form that is more convenient to process As information take different.
MECH1500 Chapter 3.
Chapter 3 Data Control Ensure the Accurate and Complete data is entering into the data processing system.
© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Logic Design Dr. Oliver Faust.
Computer Studies Today Chapter 19 1 Chapter 19. Computer Studies Today Chapter 19 2 »Information stored in a computer is in two states: –ON –OFF.
09/06/ Data Representation ASCII, Binary Denary Conversion, Integer & Boolean data types.
Understanding Computers
CHAPTER 3 BINARY NUMBER SYSTEM. Computers are electronic machines which operate using binary logic. These devices use two different values to represent.
DATA Unit 2 Topic 2. Different Types of Data ASCII code: ASCII - The American Standard Code for Information Interchange is a standard seven-bit code that.
3.1 Denary, Binary and Hexadecimal Number Systems We use the denary (base 10) number system in our daily life for counting and calculation. Computers use.
Understanding binary Understanding Computers.
Chapter 3 - Binary Numbering System
Number Systems and Codes
Unit 18: Computational Thinking
3.1 Denary, Binary and Hexadecimal Number Systems
Data and Information.
Introduction to Chapter 2
RFID - EN Encoding information Encoding information J.-D. Chatelain.
Data Encoding Characters.
Fundamentals & Ethics of Information Systems IS 201
SYEN 3330 Digital Systems Chapter 1 SYEN 3330 Digital Systems.
Introduction to IT By: Muhammed s. anwar.
Number Systems and Codes
Ch2: Data Representation
Numbering System TODAY AND TOMORROW 11th Edition
Data Representation Conversion 05/12/2018.
Fundamentals of Data Representation
2’s Complement form 1’s complement form 2’s complement form
Chapter Four Data Representation in Computers By Bezawit E.
Learning Intention I will learn how computers store text.
WJEC GCSE Computer Science
UNIT – 3 & 4. Data Representation and Internal
Networks & I/O Devices.
Presentation transcript:

CIT PowerPoint presentation Group 4

Unit 1, Chapter 2 Basic Concept on Data DATA AND INFORMATION What is data? Data consists of all sorts of unorganised and incomprehensible facts in the form of numbers, characters, symbols, or graphics. What is information? Information is processed data which is meaningful and useful. DATA PROCESSING INFORMATION

DATA COLLECTION AND DATA PREPARATION 1) By interviews, Questionnaires and Forms 2) By Observations and Measurements 3) By Experiments –(–(–(–(1) Checking Data for Accuracy –(–(–(–(2) Structuring Data

DATA MANAGEMENT 1) Sources of Errors –(–(–(–(1) During Data Collection –(–(–(–(2) During Data Preparation –(–(–(–(3) During Data Input –(–(–(–(4) During Data Processing –(–(–(–(5) During Information Output “Garbage-in Garbage-out” situation

2) Data Control –(–(–(–(1) Data Verification Data items entered are outputted immediately or as a batch for checking against the original source, to find out if there are any mismatched items. Data items are typed into a computer by two different operators independently. A program is used to compare these two sets of data and detects any discrepancies. If data verification is extensively and properly used, then the data inputted should be identical with the original data.

(2) Data Validation Refers to the data inputted being acceptable and reasonable. To ensure data validity, a validation program is to check the data inputted. This is data validation. There are 5 Types of validation check! Type Check Range Check Length Check Reasonableness Check Check Digit

Type Check –T–T–T–Type check is used to check if the data types are correct. Data are usually divided into two types: numbers and characters. Range Check –R–R–R–Range check is used to ensure that data lie within a certain range.

Length Check –L–L–L–Length check is used to ensure the correct number of characters or digits in a data item. Reasonableness Check –R–R–R–Reasonableness check tries to ensure the reasonableness of data.

Check Digit –A–A–A–A check digit is an extra digit at the end of a code. It is used to ensure the correctness of the code. Example: Identity Card Number and the International Standard Book Number (ISBN) use check digits for validation purpose. The Check Digit of the Hong kong Identity Card Number The following is an illustraion on how to find the check digit of an identity card number, e.g. D308377(?), when the other digits are known. 1. Each digit has a weighting of 2,3,4,5,6,7,8 starting from right to left. D | | | | | | |___> 7*2 = 14 | | | | | |_____> 7*3 = 21 | | | | |______> 3*4 = 12 | | | |________> 8*5 = 40 | | |_________> 0*6 = 0 | |___________> 3*7 = 21 |_____________> 4*8 = 32

2. Calculate the “ weighted sum” of the digits of the given numbers. 7*2 = 14 7*3 = 21 3*4 = 12 8*5 = 40 0*6 = 0 3*7 = 21 +)4*8 = 32 The weighted sum = Divide the weighted sum by |140 12…...8(remainder)

4. Check Digit Check digit = 11 – remainder = 11 – 8 = 3 Note that if the remainder is 0, the check digit is 0. If the remainder is 1, the check digit is 10 and a letter “A” is used. Therefore, a valid identity card number is D308377(3). You will find that it is exactly “divisible” by 11, in the sense that D (3) | | | | | | | |_> 3*1 = 3 | | | | | | |___> 7*2 = 14 | | | | | |_____> 7*3 = 21 | | | | |______> 3*4 = 12 | | | |________> 8*5 = 40 | | |_________> 0*6 = 0 | |___________> 3*7 = 21 |_____________> 4*8 = 32 —————————————— 11 |

1) REPRESENTATION OF DATA INSIDE A COMPUTER A. Denary, Binary and Hexadecimal Number Systems –A–A–A–A number system is a system that represents numbers. For each number system, a number is composed of one or more digits. –T–T–T–The position of each digit in the number has its place value, and the digit value is represented by the product of the digit and its place –I–I–I–It must be noted that the place value of each digit is larger than that of the following digit by a factor. This factor is called the base, and is different for different number systems.

(1) Denary Number System We usually use the decimals or denary number system to represent a number. The denary number system uses ten digits to represent numbers: 0,1,2,3,4,5,6,7,8,9 and use 10 as its base. A number is formed by the combination of the digits. Example i.e = 4* * * *100

(2) Binary Number System In the binary number system, only digits 0 and 1 are used. It is base-2 number system. The binary numbers are constructed in the same way as the denary numbers except that the base is 2 instead of 10. Example The binary number in expanded form is: i.e = 1*23 + 1*22 + 1*21 + 1*20

(3) Hexadecimal Number System In the hexadecimal number system, the digits 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E and F are used. (A,B,C,D,E and F represent 10,11,12,13,14,15 respectively.) It is a base-16 number system. The hexadecimal number are constructed in the same way as the decimal numbers except that the base is 16 instead of 10. The hexadecimal number 2C3D16 in expanded form is: i.e. 2C3D16 = 2* *162 +3* *160

2) USING BINARY DIGITS TO REPRESENT DATA In a computer, data are represented by binary digits “0” and “1”. Each “0” or “1” is called a bit, short form for binary digits. Usually, eight bits are combined into a group called a byte to represent or encode one character. For example, the American Standard Code for Information Interchange (ASCII) is the most popular coding system for characters. It uses a byte as a code to represent each character.

END Ho Yat Pong 4B (10) Lai Yu Fai 4B (12) Leonardo Capocio Neto 4B (20)