Computer Science, asked by Anonymous, 10 months ago

THIS IS A QUESTION OF COMPUTER JAVA

SMALLEST PRIMITIVE NUMERIC DATA TYPE IS...............

SPAMMERS PLEASE STAY AWAY

PLEASE ANSWER ME IMMEDIATELY​

Answers

Answered by hareesh8379
0

Explanation:

The byte data type is an 8-bit signed Java primitive integer data type. Its range is -128 to 127 (-27 to 27 – 1). This is the smallest integer data type available in Java.

Answered by Thanvi121109
0

Answer:

An integral data type is a numeric data type whose values are of integer type.

Java offers five integral data types:

byte

short

int

long

char

1.1. int type

The int data type is a 32-bit signed Java primitive data type. A variable of the int data type takes 32 bits of memory.

Its valid range is -2,147,483,648 to 2,147,483,647 (-231 to 231– 1).

All whole numbers in this range are known as integer literals (or integer constants). For example, 10, -200, 0, 30, 19, etc. are integer literals of int.

An integer literal can be assigned to an int variable, say counter, like so:

Similar questions