answersLogoWhite

0


Best Answer

Int: 4 bytes

Float: 4

double: 8

char: 1

boolean: 1

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many bytes required for int float double char boolean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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


Eight basic data types used in java?

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


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.


What data types are supported by Intel Pentium?

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


Innumerate the different types of data type?

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


What is the size of Float?

8 bytes


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


What are fundamental data types in java?

Assuming by "fundamental" you mean the primitive data types: boolean, byte, char, short, int, long, float, and double


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.