answersLogoWhite

0


Best Answer

For some pairs of data types, an automatic translation just doesn't make sense. For other pairs of data types, precision might be lost. In any case, the compiler tries to detect as much errors as possible during the compilation stage, that way, you will have less problems once the program actually runs.

For some pairs of data types, an automatic translation just doesn't make sense. For other pairs of data types, precision might be lost. In any case, the compiler tries to detect as much errors as possible during the compilation stage, that way, you will have less problems once the program actually runs.

For some pairs of data types, an automatic translation just doesn't make sense. For other pairs of data types, precision might be lost. In any case, the compiler tries to detect as much errors as possible during the compilation stage, that way, you will have less problems once the program actually runs.

For some pairs of data types, an automatic translation just doesn't make sense. For other pairs of data types, precision might be lost. In any case, the compiler tries to detect as much errors as possible during the compilation stage, that way, you will have less problems once the program actually runs.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

For some pairs of data types, an automatic translation just doesn't make sense. For other pairs of data types, precision might be lost. In any case, the compiler tries to detect as much errors as possible during the compilation stage, that way, you will have less problems once the program actually runs.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why type compability is required in assigninig values in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What are some tools required for Java development?

There are a number of tools that are required for Java development. Some of the most popular tools that are available for Java development are Eclipse 3.6, NetBeans 6.9 and Oracle JDeveloper Studio 11g.


Extension file for Java?

Java source files have the .java extension, compiled Java class files have the .class extension.


Where are a few of the places that one can learn more about Boolean values in Java?

There are a a few different websites that offer lessons on Boolean values in Java. The most reliable website is called HomeAndLearn because of its many different lessons.


What is Date class in java?

i am management student,and want to know answer that ,what is date class in java?


What types of values can be thrown in java?

Only instances of subclasses of throwable can be used in conjunction with the throw keyword. In java all exceptions and errors are subclasses of throwable.

Related questions

How many bits does a Java char contain?

16 bits. Java char values (and Java String values) use Unicode.


Do you need to have Java installed?

If you want to develop or run Java based applications, then having Java installed in your system is mandatory. Java Development Kit (JDK) is required if you are going to develop applications and Java Runtime Environment (JRE) is required if you want to run them.


Can you download and play minecraft without java required to play?

Minecraft was created in Java and uses Java to run, therefore you MUST have Java to play Minecraft.


Why is security required in java?

so it can be protected


Should you remove java from your computer?

Java is required to download a lot of items from the internet. If you never download anything from the internet, you can remove Java.


What are some tools required for Java development?

There are a number of tools that are required for Java development. Some of the most popular tools that are available for Java development are Eclipse 3.6, NetBeans 6.9 and Oracle JDeveloper Studio 11g.


Extension file for Java?

Java source files have the .java extension, compiled Java class files have the .class extension.


Why java language is required?

Java is an Object Oriented Language and it is the Plate form independent and provides many features.


Difference between equals equals and equal in java?

"==" in java is the binary operator which compares two values and gives a boolean result While "=" in java is a assignment operator which assigns a value to a variable.


Where are a few of the places that one can learn more about Boolean values in Java?

There are a a few different websites that offer lessons on Boolean values in Java. The most reliable website is called HomeAndLearn because of its many different lessons.


How can you print a table of 5 in java by getting values from user?

look at the print


How to Sort values in ascending order in java?

// If your values are stored in an array... Arrays.sort(valuesArray); // If they're stored in a List... Collections.sort(valuesList);