Computer Science, asked by debajitsen160, 8 months ago

8
f.
bytes of storage.
types can represent only positive values including zero.
The
stores a value at the time of the declaration of the variable.
h.
refers to a fixed value that does not change during the execution of a program.
i. If there is no sign before an integer constant, it is assumed to have a
sign.​

Answers

Answered by Anonymous
0

Answer:

If you are storing both positive and negative numbers, you'll want to use short. If you are storing only positive and you want to use the extra room, you'll want to use ushort. The values that can be stored in a short are from –32,768 to 32,767. If you use a ushort, you can store whole numbers from 0 to 65535.

Explanation:

short can store numbers from -32,768 to 32,767, while ushort can store numbers from 0 to 65,535.

Similar questions