Computer Science, asked by sayeebankhele02, 3 months ago

how much storage space is taken by each of the following :a) small integer b) big integer c) Double​

Answers

Answered by sudheerkaushik7
2

Answer:

short

2 bytes

-32,768 to +32,767

unsigned short

2 bytes

0 to +65,535

int

4 bytes

-2,147,483,648 to +2,147,483,647

unsigned int

4 bytes

0 to +4,294,967,295

long

4 bytes

-2,147,483,648 to +2,147,483,647

unsigned long

4 bytes

0 to +4,294,967,295

long long

8 bytes

-9,223,372,036,854,775,808 to +9,223,372,036,854,775,807

unsigned long long

8 bytes

0 to +8,446,744,073,709,551,615

Explanation:

follow me please

Answered by msd1552
2

Answer:

a) 2byte

b) 8 byte

c) 8 byte

Similar questions