40.8k views
5 votes
It would be wasteful to use the Long Integer setting when defining a field that will only store whole numbers ranging from 0 to 255 because the Long Integer setting will use ____ bytes of storage space.

1) 1
2) 2
3) 4
4) 8

User Michel
by
8.0k points

1 Answer

2 votes

Final answer:

Using the Long Integer setting for numbers between 0 and 255 is wasteful because it utilizes 4 bytes, whereas a Byte data type using just 1 byte suffices.

Step-by-step explanation:

It would be wasteful to use the Long Integer setting when defining a field that only needs to store whole numbers ranging from 0 to 255 because the Long Integer setting will use 4 bytes of storage space. For small ranges such as 0 to 255, a Byte data type, which uses only 1 byte of storage, is more appropriate. Using a Long Integer for such a small range is inefficient and can lead to unnecessary use of database storage resources.

User Jay Elston
by
7.7k points