Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is type casting?

Answers were Sorted based on User's Feedback



What is type casting?..

Answer / sitaram

casting means one type of date to another type of data.
There are two types
1.Implicit Type Casting.
2.Explicit Type Casting.

public class One {
static short i=10;
int k =i; //implicit
byte b = (byte)i;//Explicit
public static void main(String[] args) {
System.out.println("integer i..."+i);
}
}

1.Implicit Casting :
===================
The small data type will be automatically covert to big data
type.
Example:
static short i=10;
int k =i; //implicit
2.Explicit Casting:
===================
The big data type will be convert to small data type by type
casting.
Example:
static short i=10;
byte b = (byte)i;//Explicit

Is This Answer Correct ?    6 Yes 0 No

What is type casting?..

Answer / rakesh jain

Whenever u want to assign the value of one type variabel to
another type variable . in this case u must type cast
between them.
Generally there is two type of Type casting

1 Implicit Type Casting

2 Explicit Type Casting

example:=

short s=10;

int i=240;

s=(short)i; //Explicit type casting

Is This Answer Correct ?    5 Yes 2 No

Post New Answer

More Core Java Interview Questions

what is associative array

1 Answers   Tech Mentro,


What are the java ide’s?

0 Answers  


What is the maximum size of a string in java?

0 Answers  


If set accepts only one argument then how can it compare two objects to avoid duplicates

5 Answers  


When is the garbage collection used in Java?

0 Answers   BirlaSoft,


What is a singleton puppy?

0 Answers  


what happens when we add the objects morethan the size limit to a hashmap

1 Answers  


What is a numeric string?

0 Answers  


can u override the start() method of Thread class

5 Answers  


Howmany classes that package java.applet.* contains?

1 Answers   TCS,


How can we pass argument to a function by reference instead of pass by value?

0 Answers  


what should do when using multiple catch() block & what should never do for the same?

1 Answers  


Categories