55.1k views
2 votes
What is the smallest variable type I can use to represent the number 27?

A) int
B) float
C) char
D) byte

1 Answer

3 votes

Final answer:

The smallest variable type that can represent the number 27 is byte.

Step-by-step explanation:

The smallest variable type that can represent the number 27 is byte. A byte is an 8-bit signed integer, meaning it can represent values from -128 to 127. Since 27 falls within this range, a byte can be used to store the number 27.

User Santrix
by
7.9k points