answersLogoWhite

0

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

User Avatar

Keshawn Ziemann

Lvl 10
3y ago

What else can I help you with?

Related Questions

Is built-in data-type are abstract data-types in java?

All built-in data types are not abstract data types.


What is the difference between fundamental and derived data types?

fundamental data type makes up the derived data type


Does java supports unsigned data types?

No, in Java, only signed numbers are defined.


What is the hierarchy of the java program?

define the data types


Variables as object in java?

There are two main categories of variables in Java. They are primitive and non primitive. Primitive data types are the basic data types like int, float, char etc. These are not objects. The other non primitive data types are all types of Java Objects. Example: String, ArrayList etc.


Why java called as strong type language?

That means that Java is fairly strict about data types.


How many simple data types are there?

There are a total of 8 simple or primitive data types in Java. They are:byteshortintfloatdoublebooleanlong andString


Is Java a true object oriented language?

since Java have primitive data types, I think its not pure OO


How do you define pure object oriented language?

If an object oriented language supports the concept of primitive data types then the language is not a pure. C++ is not pure because it supports raw data pointers and fundamental types like int and float, none of which have member methods associated with them. Java, on the other hand, is pure object oriented because it has no primitive data types; all types are implemented as objects. Java is therefore easier to use than C++, but is less efficient because it provides no low-level interaction with the machine.


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


Does long int and long double data types are used in java as in c?

There is does a 'long' datatype in java, but no 'long double'.


Two example of derived data types in c plus plus?

The fundamental built in data types in C++ are integral (char, short, int, and long) and floating (float, double, and long double1).The fundamental derived data types in C++ are arrays, functions, pointers, and references.The composed derivative data types in C++ are classes, structures, and unions.----------------------------------------------------------1Microsoft specific ??