The range of Integer data type is . . . . . . . . to . . . . . . . .

-2,147,483,648 to 2,147,483,647
-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807
+/-4.94065645841247 × 10-324 to +/-1.79769313486231 × 10308
-32,768 to 32,767

The correct answer is: A. -2,147,483,648 to 2,147,483,647

An integer is a data type that can store whole numbers. The range of an integer data type is the set of all possible values that can be stored in that data type. The range of the integer data type in Java is -2,147,483,648 to 2,147,483,647.

Option B is the range of the long data type in Java.

Option C is the range of the double data type in Java.

Option D is the range of the short data type in Java.