You are on page 1of 6

DATA TYPES AND

REPRESENTATION
PRESENTED BY,
KEERTHANA KP
1DB21BA023
MEANING OF DATA REPRESENTATION

Data representation refers to the manner in which data is stored in computer


there are several different formats for data storage ,it is important for computer
problem solves to understand the basic formats.
DATA TYPES

• INTEGER TYPE [int]


• FLOATING TYPE [float]
• CHARACTER TYPE[char]
INTEGER TYPE[int]
It is the most common numeric data types used to store numbers without a
fractional component [-707,0,707]it consists of both positive ,negative
numbers as well as zero.

This Photo by Unknown Author is licensed under CC BY-SA


FLOATING TYPE[float]
It is also a numeric data types used to store numbers that may hava a
fractional component ,like monetary values do[707,0,7,707,00].

This Photo by Unknown Author is licensed under CC BY-SA


CHARACTER TYPE [char]

It is used to store strings of numbers ,letters and symbols data types


“CHAR” and “VARCHAR” together is referred as character data types.

This Photo by Unknown Author is licensed under CC BY-SA

You might also like