What is the Long Data Type (known also as BIGINT)?

Data System Architecture

About

long is the computer integer data type (ie storage format) that stores integer with at least 32 bit in size and nowdays on 64bit.

Storage and maximum

  • For a signed 64-bit]] integer, the maximum in decimal is 9223372036854775807

Vs Integer

The integer data type stores also integer but on a smaller length:

  • requiring less storage
  • at the cost of a smaller range of possible number





Discover More
Data System Architecture
Computer Storage - Integer Data Type (Binary Data)

In computer, integer are stored in word from 8 to 64 bit. Because CPU manipulates integer data type, they are also sometime called binary data type. Bit Length Two's complement signed Unsigned Float...
Data System Architecture
How are Numbers represented on a Computer?

How are Numbers represented on a Computer? This section is number representation and storage on a computer. All numbers are stored physically in Bit that represents a binary system On a computer,...
Java Conceptuel Diagram
Java - long - Long (integer 64 bit)

In Java, the long data type stores integer on 64 bit while the integer data type stores integer on 32bit. The primitive wrapper java/lang/LongLong is a subclass of java/lang/NumberNumber in java ...
Card Puncher Data Processing
Overflow Exception

overflow is instruction exception that is triggered by the ALU via a status flag when the arithmetic operation does not have enough space to be performed. If a programmer incorrectly: declares...



Share this page:
Follow us:
Task Runner