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.

Slides:



Advertisements
Similar presentations
DATABASE RC D DD CMA C M R B PK E I S H S RC H L I V FK.
Advertisements

DATA TYPES ICT DATATYPES. DATA TYPES ICT Numeric Data Numeric data simply means numbers. But, numbers come in a variety of different types... Integers.
Representing numeric data with bits
Week 2: Primitive Data Types 1.  Programming in Java  Everything goes inside a class  The main() method is the starting point for executing instructions.
CIS 234: Using Data in Java Thanks to Dr. Ralph D. Westfall.
1 AQA ICT AS Level © Nelson Thornes Types of data.
Creating a table in Access. Table Design Considerations Just as you first create a blueprint to build a house, you should first sketch or outline the.
Classification of Numbers
Storing data Getting data out Data types Ruby as a foundation Program Variables Click icon to hear comments (the download may take a minute)
Information and Data What’s the difference between two? Information systems = hardware and software working together… It will take DATA that has been put.
Binary Codes Computers and other digital systems "work" with binary numbers. I/P & O/P is usually done using decimal numbers, alphabetics, special symbols.
Week 2 - Monday.  What did we talk about last time?  Software development  Lab 1.
1 Please switch off your mobile phones. 2 Data Representation Instructor: Mainak Chaudhuri
National Diploma Unit 4 Introduction to Software Development Data types, variables and constants.
Information and Programs. Foundations of Computing Information –Binary numbers –Integers and Floating Point –Booleans (True, False) –Characters –Variables.
DATABASE. Computer-based filing systems Information in computer-based filing systems are stored in DATA FILES. A FILE is a collection of RELATED RECORDS.
VCE IT Theory Slideshows By Mark Kelly vceit.com Data Types 1 a.
Access Data Types Copyright © 2006 Patrick McDermott College of Alameda
Chapter 5: Data Types (2013) Revision Candidates should be able to know: Identify different data types? Key terms: File, record, field and key field Database.
5 5 Data types Logical/Boolean Has only two alternatives: Yes or no, on or off true or false Text/Alphanumeric Refers to all letters and numbers and other.
3 - Variables Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
Property of Jack Wilson, Cerritos College1 CIS Computer Programming Logic Programming Concepts Overview prepared by Jack Wilson Cerritos College.
What is data? Chapter 1. Introduction This presentation covers the following: – What is data? – What is information? – Representing data – What is knowledge?
Databases (2) Lesson Objective: Understand the purpose of DBMS. Understand data types, queries, forms and reports. Learning Outcome: Make a data table.
Datatypes, Variables, Constants Flash Class. What Does ActionScript Do? Automates Examples: – Tells animation what to do button is clicked – Turn off.
Digital Circuits Text Book –M. M. Mano, "Digital Design," 3rd Ed., Prentice Hall Inc., Reference –class notes Grade –quizzes:15% –mid-term:27.5%
Relational Databases. Relational database  data stored in tables  must put data into the correct tables  define relationship between tables  primary.
ITEC 109 Lecture 7 Operations. Review Variables / Methods Functions Assignments –Purpose? –What provides the data? –What stores the data? –What type of.
Data,information Data and Information 4 Data –Raw, unorganised facts –Ideas or concepts 4 Information –When data is manipulated into a meaningful form.
Computer Science I Storing data. Binary numbers. Classwork/homework: Catch up. Do analysis of image types.
Variables Continued In the last session we saw how variables are objects that allow us to store values in the RAM of the computer In this session we shall.
A: A: double “4” A: “34” 4.
VCE IT Theory Slideshows By Mark Kelly vceit.com Version 2 – updated for 2016 Data Types 1 a.
DATA TYPES, VARIABLES AND CONSTANTS. LEARNING OBJECTIVES  Be able to identify and explain the difference between data and information  Be able to identify,
HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.
Data Handling in Algorithms. Activity 1 Starter Task: Quickly complete the sheet 5mins!
5-3(D) Real Numbers.
OCR ICT for AS © Hodder Education 2008 Chapter 1 Data, information, knowledge and processing.
Chapter 9: Data types and data structures OCR Computing for A Level © Hodder Education 2009.
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.
7 - Programming 7J, K, L, M, N, O – Handling Data.
Choosing Data Types Database Administration Fundamentals
DATA TYPES.
Unit 2 Technology Systems
Week 2 - Wednesday CS 121.
BINARY CODE.
Data Types and Structures
Types of data This presentation differentiates between ICT professional and end users.
Variables Data Types and Assignment
Invitation to Computer Science, Java Version, Third Edition
Review Operation Bingo
Data Types.
Topic 1: Data Representation
GCSE Computing Lesson 6.
Data Representation and Organization
Variables In today’s lesson we will look at: what a variable is
Spreadsheets, Modelling & Databases
Lecture 5 Binary Operation Boolean Logic. Binary Operations Addition Subtraction Multiplication Division.
Variables Data Types and Assignment
C# Revision Cards Data types
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
GCSE Computing:: Selection (IF statements)
Variables Data Types and Assignment
GCSE COMPUTER SCIENCE Topic 3 - Data 3.1 Binary.
Boolean in C++ CSCE 121.
Section 6 Primitive Data Types
Presentation transcript:

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 TRUE 1 1 FALSE NO 0 0 M M F F

Alphanumeric Alphanumeric data is any combination of letters, numbers and symbols etc.) This data type is also known as a string or text. Examples: £4987 is a lot to pay for a badger I like fish DL61

Alphanumeric Continued… Alphanumeric or text/string is used to hold telephone numbers. In a computer, telephone numbers are stored as text. This is because the telephone number contains a leading zero and spaces.

Real A real number is one which has decimal places. Examples:

Integer Integer numbers are whole numbers, no bits, no decimal places. Examples:

Date Dates can be stored in many different forms. In the UK we write the date in the form DD/MM/YYYY e.g. 31/12/2014. In the US, they use the form MM/DD/YYYY e.g. 12/31/2014. Examples: 15/08/ /11/30 12/31/1999

Other Data Types Currency – Software will automatically add £ or $ to data and include decimal places. E.g. £ Image – Some databases will allow an image to be stored, for example a photo of a criminal and their fingerprints on a crime database.