answersLogoWhite

0

Int: 4 bytes

Float: 4

double: 8

char: 1

boolean: 1

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How many bytes are required to store an float in ADA?

four


What are two Java primitive types store floating-point numbers?

In Java, you can use either a float or a double


What are tose primitive data types?

byte, short, int, long, char, float, double, boolean


What are 8 examples of data types?

byte short long int char float double boolean


What Bytes occupied by double data type in c?

The number of bytes occupied by a specific data type depends on the implementation. In general, the double data type is eight bytes long, but you can check it using sizeof(double). In 16-bit,32-bit compilers double size is 8 bytes.It looks like float because it stores scientific and financial like big float values.


Eight basic data types used in java?

char, boolean, byte, short, int, long, double, or float


What data types are supported by Intel Pentium?

It supports float, double, boolean, int, char, short, long, ezekiel, jimenez, and macasusi


What is the size of Float?

8 bytes


Innumerate the different types of data type?

eight primitive data types are: -boolean -char -byte -short -int -long -double -float


Why do we use double in java but do not use float?

Double is more precise than float. The 4 bytes saved on a float are usually not very relevant. However, if you need to save large amounts of numbers (e.g. in an array), and you don't need the extra precision, you might save some memory by using float.


'How many bytes is a float variable'?

4


What are the only types in Java that are not classes?

The non-class Java data types are primitives: * byte * short * int * long * float * double * boolean * char