Data,information Data and Information 4 Data –Raw, unorganised facts –Ideas or concepts 4 Information –When data is manipulated into a meaningful form.

Slides:



Advertisements
Similar presentations
08/2012Tanya Mishra1 EASYC for VEX Cortex Llano Estacado RoboRaiders FRC Team 1817.
Advertisements

Chapter 3. Expressions and Interactivity CSC125 Introduction to C++
 2005 Pearson Education, Inc. All rights reserved Introduction.
Week 2: Primitive Data Types 1.  Programming in Java  Everything goes inside a class  The main() method is the starting point for executing instructions.
Formatted Output What we know: write(*,*) x print *, x General Form: write (unit, format, options) list unit = * : write to the monitor format = *: no.
Visual Basic: An Object Oriented Approach 4: Simple Programming in VB.
1.2 – Open Sentences and Graphs
Unit 17: Communication Technology1 Communication Technology What is it? Provides a transfer of knowledge to people all over the world. Provides a transfer.
The printf Method The printf method is another way to format output. It is based on the printf function of the C language. System.out.printf(,,,..., );
Storing data Getting data out Data types Ruby as a foundation Program Variables Click icon to hear comments (the download may take a minute)
11 Chapter 3 DECISION STRUCTURES CONT’D. 22 FORMATTING FLOATING-POINT VALUES WITH THE DecimalFormat CLASS We can use the DecimalFormat class to control.
Session 3 Process and organize data 1. Terminology 2 For a list of computer and internet terminology, please see the.
Session 3 Process and organize data 1. Terminology 2 For a list of computer and internet terminology, please see the.
Introduction to Computer Design CMPT 150 Section: D Ch. 1 Digital Computers and Information CMPT 150, Chapter 1, Tariq Nuruddin, Fall 06, SFU 1.
Java Data Types. Primitive Data Types Java has 8 primitive data types: – char: used to store a single character eg. G – boolean: used to store true or.
Introduction to Java Applications Part II. In this chapter you will learn:  Different data types( Primitive data types).  How to declare variables?
Logical or Boolean Data stored in Boolean form can only be one of two available values. Think of a light switch – it’s on or off. Examples include: YES.
Input, Output, and Processing
Copyright 1999 by Larry Fuhrer. Pascal Programming Getting Started...
Term 2, 2011 Week 5. CONTENTS Data and information Information purposes Types of data – Integer data types – Floating point numbers – Character data types.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Extended Prelude to Programming Concepts & Design, 3/e by Stewart Venit and.
Term 2, 2011 Week 1. CONTENTS Problem-solving methodology Programming and scripting languages – Programming languages Programming languages – Scripting.
Copyright © 2012 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C H A P T E R 2 Input, Processing, and Output.
COMP 171: Data Types John Barr. Review - What is Computer Science? Problem Solving  Recognizing Patterns  If you can find a pattern in the way you solve.
ITM © Port, KazmanVariables - 1 ITM 352 Data types, Variables.
THE BASICS OF A C++ PROGRAM EDP 4 / MATH 23 TTH 5:45 – 7:15.
Maths in Python [ slide 5 ] 1.Copy the table 2.Race a friend with a calculator to see whether Python is faster than a calculator: a) 5 * 6.5 = b)7 / 3.
DATA TYPE AND DISPLAY Computer Programming Asst. Prof. Dr. Choopan Rattanapoka and Asst. Prof. Dr. Suphot Chunwiphat.
Relational Databases. Relational database  data stored in tables  must put data into the correct tables  define relationship between tables  primary.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Extended Prelude to Programming Concepts & Design, 3/e by Stewart Venit and.
ITEC 109 Lecture 7 Operations. Review Variables / Methods Functions Assignments –Purpose? –What provides the data? –What stores the data? –What type of.
INFORMATION TECHNOLOGY
COP 2510 Programming ConceptsAlessio Gaspar BSAS Industrial Operations 1 Manipulating Data Concepts Covered: Literal values, variables and Types Variables.
Variables, Input, and Output. Challenge: ● Ask the user his or her name, and repeat that name to the user ● Pause video and try.
Ajmer Singh PGT(IP) Programming Fundamentals. Ajmer Singh PGT(IP) Java Character Set Character set is a set of valid characters that a language can recognize.
Values, Types, and Variables. Values Data Information Numbers Text Pretty much anything.
DATA TYPES, VARIABLES AND CONSTANTS. LEARNING OBJECTIVES  Be able to identify and explain the difference between data and information  Be able to identify,
GCSE Computing: Programming GCSE Programming Remembering Python.
ITM © Port, KazmanVariables - 1 ITM 352 Data types, Variables Class #4.
Sudeshna Sarkar, IIT Kharagpur 1 Programming and Data Structure Sudeshna Sarkar Lecture 3.
FILES AND EXCEPTIONS Topics Introduction to File Input and Output Using Loops to Process Files Processing Records Exceptions.
Objects Allow us to represent and control the computer technology Use methods to make the object do something Use properties to find out and change the.
Data Types Mr Tottman Link. Data Types Programs need to use data for calculations and for output to various devices The best programs will always use.
DATA TYPES.
Numbers in ‘C’ Two general categories: Integers Floats
Data Types and Structures
Introduction to Programming
Topics Designing a Program Input, Processing, and Output
ITM 352 Data types, Variables
Unit 2 Smarter Programming.
Chapter 1 Data Storage.
Binary Files.
Microsoft Visual Basic 2005 BASICS
Jeopardy Operations with Integers With Decimals Fractions Solving Word
IDLE Hints To re-load a module after making changes:
Variables In programming, we often need to have places to store data. These receptacles are called variables. They are called that because they can change.
Data Types.
“If you can’t write it down in English, you can’t code it.”
CS285 Introduction - Visual Basic
WEEK-2.
Topics Designing a Program Input, Processing, and Output
7 – Variables, Input and Output
Topics Designing a Program Input, Processing, and Output
Data Types Every variable has a given data type. The most common data types are: String - Text made up of numbers, letters and characters. Integer - Whole.
Data Types and Maths Programming Guides.
An Introduction to Programming
Millennium High School Agenda Calendar
Rational Numbers and Irrational Numbers
Digital Computer & Digital Systems
Presentation transcript:

data,information Data and Information 4 Data –Raw, unorganised facts –Ideas or concepts 4 Information –When data is manipulated into a meaningful form –Used to assist in decision making –Information presented in two forms Hard copy or soft copy

data,information Data and Information 4 Information, contd 4 Digital information output not designed to be printed, thus format & presentation are different 4 Digital information formatted so best viewed on screen 4 Also can produce information not suited to hard copy, eg. digital files, DVDs, etc. 4 Output, end production of a solution 4 Solution, a method of solving a problem

data,information Purposes of Information 4 Inform –Convey facts, like reporting on issue 4 Persuade –Influence a decision or change a point of view 4 Entertain –Engage in a activity in a pleasing or amusing way 4 Educate –Provide knowledge & skills to use that knowledge

data,information Types of data 4 Integer data types –A finite subset of numbers without a fractional or decimal component; used to represent whole numbers 4 Floating point numbers –Too small or big to be given as integers –Represented as decimal numbers 4 Character data types –Includes alphanumerical text, eg. letters, nos., spaces, symbols –Character variable holds a single letter, no. or symbol –Used in character fields not used in mathematical calculations, such as names, telephone nos., postcodes

data,information Types of data 4 String data types –A series of symbols or values, such as a character string (a sequence of characters) or a binary string (a sequence of binary values; –phone nos. postcodes, are strings that include numbers. –String data types require less memory.