answersLogoWhite

0

What is short integer?

Updated: 10/26/2022
User Avatar

Wiki User

12y ago

Best Answer

In computer programming, a variable can be (among other things) an integer or a long integer.

An integer can be any whole number in the range of -32,768 to 32,767

A long integer can be any whole number in the range of -2,147,483,648 tp 2,147,483,647

I have never heard of an "integer" variable being called a "short integer" but it makes a kind of sense.

Note: The size of integer types is platform-dependent, but usually:

short: 16 bits

int: 32 bits (16 in archaic systems: MSDOS OS Windows16)

long: 32 bits (64 in unix64)

long long: 64 bits

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is short integer?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the short integer data type in MS Access?

NUMBER (FieldSize= INTEGER)the opposite beingNUMBER (FieldSize = LONG INTEGER)A short integer is basically a smaller limit than a long integer. When defining a short integer the database will supply a slot in memory that is big enough to fit the biggest short int possible.


What is the format specifier of short integer?

%hd


What does the reserved word Short mean in java?

A short is an integer that uses only 2 bytes, instead of the 4 bytes required by an int.A short is an integer that uses only 2 bytes, instead of the 4 bytes required by an int.A short is an integer that uses only 2 bytes, instead of the 4 bytes required by an int.A short is an integer that uses only 2 bytes, instead of the 4 bytes required by an int.


How integer classified in java?

int short byte long


Is int a statistical function?

No, 'int' is short for 'integer' (or 'integral' etc).


What is the data type int?

Data-type (short for integer).


How will you convert wrapper integer into primitive integer in java?

All integeral wrapper class (Byte,Short,Integer,Long)contains the following valueOf() .public static wrappertype valueOf(String s,int radix);integer I=Integer.valueOf("1010",2);output is 10....


What is the significance of declaring a constant unsigned integer?

What is the significance of declaring a constant unsigned integer?


What are the smallest and the largest integer values for primitive type short?

The smallest value is -32,768 and the maximum is 32,767


What do you call a unit of info 8 bits long?

It could be called a byte, a character, a short integer, etc.


What is integer in visual basic?

In the computer programming language Visual Basic, the data type integer is a whole number which can be used in calclations. It can be positive, negative, or zero. The default type of integer is 32-bit, but with "short" and "long" you can have 16- or 64- bit answers. The short data type works well with small numbers and saves RAM space. If overflow is a problem, long works better because of its larger capacity. To take the integer portion of a decimal, single, or double, use the int() function. int(3.925604) returns 3 as a decimal To convert a data type to integer, use cint() cint(int(3.925604)) returns 3 as an integer


Is -2 is not an integer?

No, it is an integer.