Skip to main content

๐Ÿ‘† 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

TypeWhat do they store?What value range do they store?How many bytes of data do they store?
IntegerNumbersNumbers that range from around minus to billion to the positive4 bytes
FloatNumbersFrom 1.175494351 E - 38 to 3.402823466 E +384 bytes
StringCharacters0 to 2 billion unicode characters22 bytes
BooleanYes/NoTwo possible answers2 bytes
CharLetters1 Letter1 byte
DoubleNumbers1.7E +/- 308 (15 characters)8 bytes
๐Ÿง  Test your knowledge!