SlideShare ist ein Scribd-Unternehmen logo
1 von 33
1. Data Information
Content
 Introduction
 Transforming data into information
 Data representation in Computer
 Summary
Introduction
 The computer accepts data as an input, stores it
process it as the user requires and produces
information or processed data as an output in
desired format.
 Computer is one of the major component of an
Information Technology and is gaining increasing
popularity.
 Basic Computer operations:
 It accepts data or instruction by way of input.
 It stores data.
 It can process data as required by the user.
 It gives result in form of output .
 It controls all operations inside a computer.
Transforming data into information
The process of producing results from the data for getting useful
information can be termed as Transforming Data Into
Information.
 What is Data?
Data can be defined as a representation of facts, concepts or
instruction in a formalized manner which should be suitable
for communication , interpretation or processing by human or
electronic machine.
Data is represented with the help of characters like alphabets
(A-Z, a-z), digits (0-9) or special characters(+,-,/,*,<,>,= etc).
 What is Information?
 Information is organized or classified data so that it has some
meaningful values to the receiver. Information is the processed
data on which decisions and actions are based.
 For the decision to be meaningful, the processed data must
qualify for the following characteristics
 Timely - Information should be available when required.
 Accuracy - Information should be accurate.
 Completeness - Information should be complete.
 DATA PROCESSING:
 Data processing is the re-structuring or re-ordering of data
by people or machine to increase their usefulness & add
values for particular purpose.
 Data processing consists of basic steps input, processing
and output. These three steps constitute the data processing
cycle.
Data Processing Cycle
 Input –
In this step the input data are prepared in some convenient form for processing.
The form will depend on the processing machine. For example, when electronic
computers are used, the input data could be recorded on any one of several types
of input medium, such as magnetic disks, tapes and so on.
 Processing –
In this step input data are changed to produce data in a more useful form. For
example, pay-checks may be calculated from the time cards, or a summary of sales
for the month may be calculated from the sales orders.
 Output –
Here the result of the proceeding processing step are collected. The particular
form of the output data depends on the use of the data. For example, output data
may be pay-checks for employees.
 Storage –
Finally the storage unit is used to store data or information permanently.
Basic Computer Operations
Transforming data into information
 Functional Units
 The computer system is divided into three separate units for its
operation. They are:
 Arithmetic Logical unit
 Control Unit
 Central Processing Unit
Transforming data into information
 Functional Units
 Arithmetic Logical Unit {ALU}:
 After you enter data through input device it is stored in the
primary storage unit.
 The actual processing of the data and instruction are
performed by Arithmetic Logical Unit.
 Operation performed by the ALU are:
 Addition
 Subtraction
 Multiplication
 Division
 Logic
 Comparison
Arithmetic Logical Unit (ALU)
Transforming data into information
 Functional Units
 Control Unit (CU):
 Acts like the supervisor seeing that things are done in proper
fashion.
 Determines the sequence in which computer programs and
instructions are executed.
Control Unit
Transforming data into information
 Functional Units
 Central Processing Unit (CPU):
 The ALU and the CU of a computer system are jointly known as
the central processing unit.
 CPU can be called Brain of any computer system.
 It takes all major decisions, makes all sorts of calculations and
directs different parts of the computer functions by activating and
controlling the operation.
Data representation in Computer
 Instruction data representation considers how a
computer uses numbers to represent data inside the
computer.
 Three types of data are considered at this stage:
 Number including positive , negative and fractions
 Text
 Graphics
What is Computer
Number System?
COMPUTER -NUMBER SYSTEM
 When we type some letters or words, the computer
translates them in numbers as computers can
understand only numbers.
 A computer can understand positional number system
where there are only a few symbols called digits and
these symbols represent different values depending on
the position they occupy in the number.
 A value of each digit in a number can be determined
using
 The digit
 The position of the digit in the number
 The base of the number system (where base is defined as the total
number of digits available in the number system).
 Decimal Number System
 The number system that we use in our day-to-day life is the
decimal number system. Decimal number system has base
10 as it uses 10 digits from 0 to 9. In decimal number
system, the successive positions to the left of the decimal
point represent units, tens, hundreds, thousands and so on.
 Each position represents a specific power of the base (10).
 For example 1234 can be written as:
(1x1000)+ (2x100)+ (3x10)+ (4xl)
(1x103)+ (2x102)+ (3x101)+ (4xl00)
1000 + 200 + 30 + 1
1234
 As a computer programmer or an IT professional,
you should understand the following number
systems which are frequently used in computers.
S.N. Number System & Description
1 Binary Number System
Base 2. Digits used: 0, 1
2 Octal Number System
Base 8. Digits used: 0 to 7
3 Hexa Decimal Number System
Base 16. Digits used: 0 to 9, Letters used: A- F
 Binary Number System
 Uses two digits, 0 and 1.
 Also called base 2 number system
 Each position in a binary number represents a 0 power of
the base (2). Example 20
 Octal Number System
 Uses eight digits, 0,1,2,3,4,5,6,7.
 Also called base 8 number system
 Each position in a octal number represents a 0 power of the
base (8). Example 80
 Hexadecimal Number System
 Uses 10 digits and 6 letters, 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F.
 Letters represents numbers starting from 10. A = 10. B = 11, C
= 12, D = 13, E = 14, F = 15.
 Also called base 16 number system
 Each position in a hexadecimal number represents a 0 power
of the base (16). Example 160
Data representation in Computer
 Decimal representation in computers
Decimal Binary coded decimal
0 0000
1 0001
2 0010
3 0011
4 0100
5 0101
6 0111
7 1000
8 1001
9 00010000
10 00010001
11 00010010
12 00010011
Data representation in Computer
 Alphanumeric Representation
 A set containing alphabets (in both cases), the decimal digits (1
0 in number) and special characters (roughly 10-15 in numbers)
consist of at lea 70-80 elements. One such code generated for
this set and is popularly used is ASCII (American National
Standard Code for Information Interchange).
 This code uses 7bits to represent 128 characters. Now an
extended ASCII is used having 8-bit character representation
code on Microcomputer.
 Binary codes can be formulated for any set of discrete elements.
Data representation in Computer
 Computational Data Representation
 The computer is discrete digital and store information in flip-
flops, which are two state devices, in binary form.
 Basic requirements of the computational data representation
in binary form are:
 Representation of sign
 Representation of magnitude
 If the number is fractional then binary or decimal point and
exponent.
 The solution to sign representation is easy, because sign can be
either positive or negative, therefore, one bit can be used to
represent sign. By default it should be the left most bit.
 A number of n bits can be represented as n+1 bit number, where
n+1th bit is the sign bit and rest n bits represent its magnitude.
 To simplify the representation aspect two methods are suggested:
 A) Fixed point representation
• The fixed-point numbers bit 1 binary uses a sign bit. A positive number
have a sign bit 0, while the negative has a sign bit 1. In fixed-point
numbers we assume that the positive of the binary point is at the end.
 B) Decimal Fixed point representation
• A decimal digit is represented as a combination of four bits; thus, a four
digit decimal number will require16 bits for decimal digits
representation and additional 1 bit for sign.
 C) Floating point representation
• The first part of the number is a signed fixed point number, which is
termed as mantissa and the second part specifies the decimal or binary
point position and is termed as an Exponent.
Summary
 The five basic operations that a computer performs. These are
input, storage, processing, output and control.
 A computer accepts data as input, stores it, processes it as the
user requires and provides the output in a desired format.
 Computer system into three functional units i.e. Arithmetic
logical unit (ALU), Control unit (CU), Central processing unit.
 Number System

Weitere ähnliche Inhalte

Was ist angesagt?

Number Systems
Number SystemsNumber Systems
Number SystemsGaditek
 
Digital representation
Digital representationDigital representation
Digital representationKhlaire Paño
 
[1] Data Representation
[1] Data Representation[1] Data Representation
[1] Data RepresentationMr McAlpine
 
Binary Digital representation
Binary Digital representationBinary Digital representation
Binary Digital representationSylvia Alvaro
 
Data representation
 Data representation Data representation
Data representationAshraf Miraz
 
Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representationekul
 
Chapter 03 number system 2o-p
Chapter 03 number system 2o-pChapter 03 number system 2o-p
Chapter 03 number system 2o-pIIUI
 
CS3C - Jonbon Libreja
CS3C - Jonbon LibrejaCS3C - Jonbon Libreja
CS3C - Jonbon LibrejaPog Arenas
 
Binary, Decimal and Hexadecimal
Binary, Decimal and HexadecimalBinary, Decimal and Hexadecimal
Binary, Decimal and HexadecimalUthraSowrirajan1
 
Computers numbering systems
Computers   numbering systemsComputers   numbering systems
Computers numbering systemssld1950
 
Data representation
Data representationData representation
Data representationrozanadiana
 
Computer Systems Data Representation
Computer Systems   Data RepresentationComputer Systems   Data Representation
Computer Systems Data Representationiarthur
 
Data processing and analysis
Data processing and analysisData processing and analysis
Data processing and analysisMah Noor
 
Data repersentation.
Data repersentation.Data repersentation.
Data repersentation.Ritesh Saini
 

Was ist angesagt? (20)

Number Systems
Number SystemsNumber Systems
Number Systems
 
Data representation
Data representationData representation
Data representation
 
Number system
Number system Number system
Number system
 
Data representation
Data representationData representation
Data representation
 
Digital representation
Digital representationDigital representation
Digital representation
 
[1] Data Representation
[1] Data Representation[1] Data Representation
[1] Data Representation
 
Binary Digital representation
Binary Digital representationBinary Digital representation
Binary Digital representation
 
Class2
Class2Class2
Class2
 
Data representation
 Data representation Data representation
Data representation
 
Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representation
 
Chapter 03 number system 2o-p
Chapter 03 number system 2o-pChapter 03 number system 2o-p
Chapter 03 number system 2o-p
 
CS3C - Jonbon Libreja
CS3C - Jonbon LibrejaCS3C - Jonbon Libreja
CS3C - Jonbon Libreja
 
Number system
Number systemNumber system
Number system
 
Binary, Decimal and Hexadecimal
Binary, Decimal and HexadecimalBinary, Decimal and Hexadecimal
Binary, Decimal and Hexadecimal
 
Computers numbering systems
Computers   numbering systemsComputers   numbering systems
Computers numbering systems
 
Data representation
Data representationData representation
Data representation
 
Data representation
Data representationData representation
Data representation
 
Computer Systems Data Representation
Computer Systems   Data RepresentationComputer Systems   Data Representation
Computer Systems Data Representation
 
Data processing and analysis
Data processing and analysisData processing and analysis
Data processing and analysis
 
Data repersentation.
Data repersentation.Data repersentation.
Data repersentation.
 

Andere mochten auch

Andere mochten auch (13)

Don pelayo
Don pelayoDon pelayo
Don pelayo
 
Reading
ReadingReading
Reading
 
Don pelayo
Don pelayoDon pelayo
Don pelayo
 
Don pelayo
Don pelayoDon pelayo
Don pelayo
 
Don pelayo
Don pelayoDon pelayo
Don pelayo
 
Public speaking
Public speakingPublic speaking
Public speaking
 
learning english by using media
learning english by using medialearning english by using media
learning english by using media
 
Doszier presentation
Doszier presentationDoszier presentation
Doszier presentation
 
Don pelayo
Don pelayoDon pelayo
Don pelayo
 
Kelompok 6
Kelompok 6Kelompok 6
Kelompok 6
 
Earth Science G10 Module 1 Activity 1
Earth Science G10 Module 1 Activity 1Earth Science G10 Module 1 Activity 1
Earth Science G10 Module 1 Activity 1
 
Trisca vocabulary test
Trisca vocabulary testTrisca vocabulary test
Trisca vocabulary test
 
GROUP COMMUNICATION
GROUP COMMUNICATIONGROUP COMMUNICATION
GROUP COMMUNICATION
 

Ähnlich wie 1.Data information

Introduction to digital computers and Number systems.pptx
Introduction to digital computers and Number systems.pptxIntroduction to digital computers and Number systems.pptx
Introduction to digital computers and Number systems.pptxBhawaniShankarSahu1
 
It tools and buisness system.docx
It tools and buisness system.docxIt tools and buisness system.docx
It tools and buisness system.docxhinditutorialspoint
 
chapter one && two.pdf
chapter one && two.pdfchapter one && two.pdf
chapter one && two.pdfmiftah88
 
Introduction to computer hardware
Introduction to computer hardwareIntroduction to computer hardware
Introduction to computer hardwareK. A. M Lutfullah
 
mis for IT.pptx
mis for IT.pptxmis for IT.pptx
mis for IT.pptxkaiwanak
 
Presentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptxPresentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptxMinahilUmar1
 
Introduction to Computer Fundamentals
Introduction to Computer FundamentalsIntroduction to Computer Fundamentals
Introduction to Computer Fundamentalsshivanichauhan1953
 
System concept and hardware
System concept and hardwareSystem concept and hardware
System concept and hardwarefiza1975
 
Computer data processing
Computer data processingComputer data processing
Computer data processingLam To
 
Understanding Computers - Today and Tomorrow
Understanding Computers - Today and TomorrowUnderstanding Computers - Today and Tomorrow
Understanding Computers - Today and TomorrowGufranAhmadJU
 
TLE – ICT 8 Digital Mensuration II.pptx
TLE – ICT 8 Digital Mensuration II.pptxTLE – ICT 8 Digital Mensuration II.pptx
TLE – ICT 8 Digital Mensuration II.pptxjudechristopher3
 
Int Cs Rev
Int Cs RevInt Cs Rev
Int Cs RevnorthVU
 
Data representation
Data representationData representation
Data representationMysore
 
PROGRAM LOGIC AND FORMULATION
PROGRAM LOGIC AND FORMULATIONPROGRAM LOGIC AND FORMULATION
PROGRAM LOGIC AND FORMULATIONJoland Reambillo
 

Ähnlich wie 1.Data information (20)

Introduction to digital computers and Number systems.pptx
Introduction to digital computers and Number systems.pptxIntroduction to digital computers and Number systems.pptx
Introduction to digital computers and Number systems.pptx
 
It tools and buisness system.docx
It tools and buisness system.docxIt tools and buisness system.docx
It tools and buisness system.docx
 
chapter one && two.pdf
chapter one && two.pdfchapter one && two.pdf
chapter one && two.pdf
 
COA Unit-1.pdf
COA Unit-1.pdfCOA Unit-1.pdf
COA Unit-1.pdf
 
Introduction to computer hardware
Introduction to computer hardwareIntroduction to computer hardware
Introduction to computer hardware
 
mis for IT.pptx
mis for IT.pptxmis for IT.pptx
mis for IT.pptx
 
Presentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptxPresentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptx
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
DLD Chapter-1.pdf
DLD Chapter-1.pdfDLD Chapter-1.pdf
DLD Chapter-1.pdf
 
Introduction to Computer Fundamentals
Introduction to Computer FundamentalsIntroduction to Computer Fundamentals
Introduction to Computer Fundamentals
 
System concept and hardware
System concept and hardwareSystem concept and hardware
System concept and hardware
 
Computer data processing
Computer data processingComputer data processing
Computer data processing
 
Understanding Computers - Today and Tomorrow
Understanding Computers - Today and TomorrowUnderstanding Computers - Today and Tomorrow
Understanding Computers - Today and Tomorrow
 
TLE – ICT 8 Digital Mensuration II.pptx
TLE – ICT 8 Digital Mensuration II.pptxTLE – ICT 8 Digital Mensuration II.pptx
TLE – ICT 8 Digital Mensuration II.pptx
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
 
Int Cs Rev
Int Cs RevInt Cs Rev
Int Cs Rev
 
Data representation
Data representationData representation
Data representation
 
PROGRAM LOGIC AND FORMULATION
PROGRAM LOGIC AND FORMULATIONPROGRAM LOGIC AND FORMULATION
PROGRAM LOGIC AND FORMULATION
 
Informations Technology
Informations TechnologyInformations Technology
Informations Technology
 
NUMBER SYSTEM.pptx
NUMBER  SYSTEM.pptxNUMBER  SYSTEM.pptx
NUMBER SYSTEM.pptx
 

Kürzlich hochgeladen

08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 

Kürzlich hochgeladen (20)

08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 

1.Data information

  • 2. Content  Introduction  Transforming data into information  Data representation in Computer  Summary
  • 3. Introduction  The computer accepts data as an input, stores it process it as the user requires and produces information or processed data as an output in desired format.  Computer is one of the major component of an Information Technology and is gaining increasing popularity.  Basic Computer operations:  It accepts data or instruction by way of input.  It stores data.  It can process data as required by the user.  It gives result in form of output .  It controls all operations inside a computer.
  • 4. Transforming data into information The process of producing results from the data for getting useful information can be termed as Transforming Data Into Information.
  • 5.  What is Data? Data can be defined as a representation of facts, concepts or instruction in a formalized manner which should be suitable for communication , interpretation or processing by human or electronic machine. Data is represented with the help of characters like alphabets (A-Z, a-z), digits (0-9) or special characters(+,-,/,*,<,>,= etc).
  • 6.  What is Information?  Information is organized or classified data so that it has some meaningful values to the receiver. Information is the processed data on which decisions and actions are based.  For the decision to be meaningful, the processed data must qualify for the following characteristics  Timely - Information should be available when required.  Accuracy - Information should be accurate.  Completeness - Information should be complete.
  • 7.  DATA PROCESSING:  Data processing is the re-structuring or re-ordering of data by people or machine to increase their usefulness & add values for particular purpose.  Data processing consists of basic steps input, processing and output. These three steps constitute the data processing cycle.
  • 9.  Input – In this step the input data are prepared in some convenient form for processing. The form will depend on the processing machine. For example, when electronic computers are used, the input data could be recorded on any one of several types of input medium, such as magnetic disks, tapes and so on.  Processing – In this step input data are changed to produce data in a more useful form. For example, pay-checks may be calculated from the time cards, or a summary of sales for the month may be calculated from the sales orders.  Output – Here the result of the proceeding processing step are collected. The particular form of the output data depends on the use of the data. For example, output data may be pay-checks for employees.  Storage – Finally the storage unit is used to store data or information permanently.
  • 11. Transforming data into information  Functional Units  The computer system is divided into three separate units for its operation. They are:  Arithmetic Logical unit  Control Unit  Central Processing Unit
  • 12. Transforming data into information  Functional Units  Arithmetic Logical Unit {ALU}:  After you enter data through input device it is stored in the primary storage unit.  The actual processing of the data and instruction are performed by Arithmetic Logical Unit.  Operation performed by the ALU are:  Addition  Subtraction  Multiplication  Division  Logic  Comparison
  • 14. Transforming data into information  Functional Units  Control Unit (CU):  Acts like the supervisor seeing that things are done in proper fashion.  Determines the sequence in which computer programs and instructions are executed.
  • 16. Transforming data into information  Functional Units  Central Processing Unit (CPU):  The ALU and the CU of a computer system are jointly known as the central processing unit.  CPU can be called Brain of any computer system.  It takes all major decisions, makes all sorts of calculations and directs different parts of the computer functions by activating and controlling the operation.
  • 17.
  • 18. Data representation in Computer  Instruction data representation considers how a computer uses numbers to represent data inside the computer.  Three types of data are considered at this stage:  Number including positive , negative and fractions  Text  Graphics
  • 20. COMPUTER -NUMBER SYSTEM  When we type some letters or words, the computer translates them in numbers as computers can understand only numbers.  A computer can understand positional number system where there are only a few symbols called digits and these symbols represent different values depending on the position they occupy in the number.  A value of each digit in a number can be determined using  The digit  The position of the digit in the number  The base of the number system (where base is defined as the total number of digits available in the number system).
  • 21.  Decimal Number System  The number system that we use in our day-to-day life is the decimal number system. Decimal number system has base 10 as it uses 10 digits from 0 to 9. In decimal number system, the successive positions to the left of the decimal point represent units, tens, hundreds, thousands and so on.  Each position represents a specific power of the base (10).  For example 1234 can be written as: (1x1000)+ (2x100)+ (3x10)+ (4xl) (1x103)+ (2x102)+ (3x101)+ (4xl00) 1000 + 200 + 30 + 1 1234
  • 22.  As a computer programmer or an IT professional, you should understand the following number systems which are frequently used in computers. S.N. Number System & Description 1 Binary Number System Base 2. Digits used: 0, 1 2 Octal Number System Base 8. Digits used: 0 to 7 3 Hexa Decimal Number System Base 16. Digits used: 0 to 9, Letters used: A- F
  • 23.  Binary Number System  Uses two digits, 0 and 1.  Also called base 2 number system  Each position in a binary number represents a 0 power of the base (2). Example 20
  • 24.
  • 25.  Octal Number System  Uses eight digits, 0,1,2,3,4,5,6,7.  Also called base 8 number system  Each position in a octal number represents a 0 power of the base (8). Example 80
  • 26.
  • 27.  Hexadecimal Number System  Uses 10 digits and 6 letters, 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F.  Letters represents numbers starting from 10. A = 10. B = 11, C = 12, D = 13, E = 14, F = 15.  Also called base 16 number system  Each position in a hexadecimal number represents a 0 power of the base (16). Example 160
  • 28.
  • 29. Data representation in Computer  Decimal representation in computers Decimal Binary coded decimal 0 0000 1 0001 2 0010 3 0011 4 0100 5 0101 6 0111 7 1000 8 1001 9 00010000 10 00010001 11 00010010 12 00010011
  • 30. Data representation in Computer  Alphanumeric Representation  A set containing alphabets (in both cases), the decimal digits (1 0 in number) and special characters (roughly 10-15 in numbers) consist of at lea 70-80 elements. One such code generated for this set and is popularly used is ASCII (American National Standard Code for Information Interchange).  This code uses 7bits to represent 128 characters. Now an extended ASCII is used having 8-bit character representation code on Microcomputer.  Binary codes can be formulated for any set of discrete elements.
  • 31. Data representation in Computer  Computational Data Representation  The computer is discrete digital and store information in flip- flops, which are two state devices, in binary form.  Basic requirements of the computational data representation in binary form are:  Representation of sign  Representation of magnitude  If the number is fractional then binary or decimal point and exponent.  The solution to sign representation is easy, because sign can be either positive or negative, therefore, one bit can be used to represent sign. By default it should be the left most bit.
  • 32.  A number of n bits can be represented as n+1 bit number, where n+1th bit is the sign bit and rest n bits represent its magnitude.  To simplify the representation aspect two methods are suggested:  A) Fixed point representation • The fixed-point numbers bit 1 binary uses a sign bit. A positive number have a sign bit 0, while the negative has a sign bit 1. In fixed-point numbers we assume that the positive of the binary point is at the end.  B) Decimal Fixed point representation • A decimal digit is represented as a combination of four bits; thus, a four digit decimal number will require16 bits for decimal digits representation and additional 1 bit for sign.  C) Floating point representation • The first part of the number is a signed fixed point number, which is termed as mantissa and the second part specifies the decimal or binary point position and is termed as an Exponent.
  • 33. Summary  The five basic operations that a computer performs. These are input, storage, processing, output and control.  A computer accepts data as input, stores it, processes it as the user requires and provides the output in a desired format.  Computer system into three functional units i.e. Arithmetic logical unit (ALU), Control unit (CU), Central processing unit.  Number System