What is casting?

Answers were Sorted based on User's Feedback



What is casting?..

Answer / kabita

Casting is used to convert the value from one datatype to
another datatype

Is This Answer Correct ?    7 Yes 0 No

What is casting?..

Answer / vijayakumar chinnasamy

Casting mostly used for converting value from one data type
to another data type.Mostly used for convert incompatible
data.

eg:

WRRONG
long a=20; // a is 64bit(long) data
int b=10; // b is 32 bit data.
b=a; // u r trying to assign 64bit data into 32 bit data

CORRECT
long a=20; // a is 64bit(long) data
int b=10; // b is 32 bit data.
b=(int)a; // ur converting 64bit data into 32bit data
then assign to variable b.

Is This Answer Correct ?    5 Yes 0 No

What is casting?..

Answer / janet

Casting is used to convert the value of one type to another

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

Can we create our own wrapper class in java?

0 Answers  


What are void methods?

0 Answers  


What is java util?

0 Answers  


Is array dynamic in java?

0 Answers  


what is difference between interface and abstract class..?

4 Answers  






What is the arraylist in java?

0 Answers  


List out five keywords related to exception handling ?

0 Answers  


what is custom tags with example?

3 Answers   Amdocs,


What is private static in java?

0 Answers  


How do you sing an Applet ?

0 Answers  


Why is inheritance used in java?

0 Answers  


how many types of Inheritance?

0 Answers   Impetus,


Categories