Data Types – Programming Fundamentals (2024)

Kenneth Leroy Busbee and Dave Braunschweig

Overview

A data typeis a classification of data which tells the compiler or interpreter how the programmer intends to use the data. Most programming languages support various types of data, including integer, real, character or string, and Boolean.[1]

Discussion

Our interactions (inputs and outputs) with a program are treated in many languages as a stream of bytes. These bytes represent data that can be interpreted as representing values that we understand. Additionally, within a program, we process this data in various ways such as adding them up or sorting them. This data comes in different forms. Examples include:

  • your name – a string of characters
  • your age – usually an integer
  • the amount of money in your pocket – usually a value measured in dollars and cents (something with a fractional part)

A major part of understanding how to design and code programs is centered in understanding the types of data that we want to manipulate and how to manipulate that data.

Common data types include:

Data TypeRepresentsExamples
integerwhole numbers-5, 0, 123
floating point (real)fractional numbers-87.5, 0.0, 3.14159
stringA sequence of characters"Hello world!"
Booleanlogical true or falsetrue, false
nothingno datanull

The common data types usually exist in most programming languages and act or behave similarly from language to language. Additional complex and/or composite data types may exist and vary from language to language.

Pseudocode

Function Main ... This program demonstrates variables, literal constants, and data types. Declare Integer i Declare Real r Declare String s Declare Boolean b Assign i = 1234567890 Assign r = 1.23456789012345 Assign s = "string" Assign b = true Output "Integer i = " & i Output "Real r = " & r Output "String s = " & s Output "Boolean b = " & bEnd

Output

Integer i = 1234567890Real r = 1.23456789012345String s = stringBoolean b = true

Flowchart

Data Types – Programming Fundamentals (1)

Key Terms

Boolean
A data type representing logical true or false.
data type
Defines a set of values and a set of operations that can be applied on those values.
floating point
A data type representing numbers with fractional parts.
integer
A data type representing whole numbers.
string
A data type representing a sequence of characters.

References

Data Types – Programming Fundamentals (2024)
Top Articles
Latest Posts
Article information

Author: Jonah Leffler

Last Updated:

Views: 6017

Rating: 4.4 / 5 (45 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Jonah Leffler

Birthday: 1997-10-27

Address: 8987 Kieth Ports, Luettgenland, CT 54657-9808

Phone: +2611128251586

Job: Mining Supervisor

Hobby: Worldbuilding, Electronics, Amateur radio, Skiing, Cycling, Jogging, Taxidermy

Introduction: My name is Jonah Leffler, I am a determined, faithful, outstanding, inexpensive, cheerful, determined, smiling person who loves writing and wants to share my knowledge and understanding with you.