๐ Data types
There are different types of data. They include:
๐ก Logical#
Yes,  
True, False 
1, 0 
๐ Geospatial#
Geographical location 
Something that related to data that is associated with a particular location.
๐ Temporal#
Time 
Data that represents time
| Type | What do they store? | What value range do they store? | How many bytes of data do they store? | 
|---|---|---|---|
| Integer | Numbers | Numbers that range from around minus to billion to the positive | 4 bytes | 
| Float | Numbers | From 1.175494351 E - 38 to 3.402823466 E +38 | 4 bytes | 
| String | Characters | 0 to 2 billion unicode characters | 22 bytes | 
| Boolean | Yes/No | Two possible answers | 2 bytes | 
| Char | Letters | 1 Letter | 1 byte | 
| Double | Numbers | 1.7E +/- 308 (15 characters) | 8 bytes |