Data Types (Cambridge (CIE) IGCSE Computer Science): Revision Note
Exam code: 0478 & 0984
Data Types
What is a data type?
A data type is a classification of data into groups according to the kind of data they represent
Computers use different data types to represent different types of data in a program
The basic data types include:
Data type | Used for | Pseudocode | Example |
---|---|---|---|
Integer | Whole numbers |
|
|
Real | Numbers with a fractional part (decimal) |
|
|
Character | Single character |
|
|
String | Sequence of characters |
|
|
Boolean | True or false values |
|
|
It is important to choose the correct data type for a given situation to ensure accuracy and efficiency in the program
Data types can be changed within a program, this is called casting
Programming data types
Data type | Pseudocode | Python |
---|---|---|
Integer |
|
|
Real |
|
|
Character |
|
|
String |
|
|
Boolean |
|
|
Worked Example
Name and describe the most appropriate programming data type for each of the examples of data given. Each data type must be different
[6]
Data: 83
Data: [email protected] (opens in a new tab)
Data: True
Answers
Data type name: Integer [1]
Data type description: The number is a whole number [1]Data type name: String [1]
Data type description: It is a group of characters [1]Data type name: Boolean [1]
Data type description: The value is True (or could be False) [1]
Unlock more, it's free!
Did this page help you?