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 compile time polymorphism?

Answers were Sorted based on User's Feedback



What is compile time polymorphism?..

Answer / pooja

In compile time polymorphism, the overloaded member
functions are selected for invoking, by matching arguments
type,number and sequence by compiler at compile time.
it is also called early or static binding.

Is This Answer Correct ?    5 Yes 0 No

What is compile time polymorphism?..

Answer / shubh

When object is bound with its functionality at compile time.
Then polymorphism is called compile time polymorphism.
Function overloading is a way to achieve compile time
polymorphism in java.

Is This Answer Correct ?    2 Yes 0 No

What is compile time polymorphism?..

Answer / charles i

overloading method and the compiler has to decide when to
call the method..

Is This Answer Correct ?    2 Yes 1 No

What is compile time polymorphism?..

Answer / coolm

Function and operator overloading is compile time polymorphism.

Is This Answer Correct ?    1 Yes 0 No

What is compile time polymorphism?..

Answer / sadikhasan palsaniya

method overloading with final keyword is known as compile
time polymorphism.

Is This Answer Correct ?    1 Yes 0 No

What is compile time polymorphism?..

Answer / ahmad salam mehsu

This is another type of polymorphism also called as compile
time polymorphism or static binding. Using template provides
compile-time polymorphism.
So "compile time polymorphism" means function overloading.
It applies only to functions because they're all you can
overload.

Is This Answer Correct ?    1 Yes 1 No

What is compile time polymorphism?..

Answer / pawan mor

overloading.

Is This Answer Correct ?    0 Yes 0 No

What is compile time polymorphism?..

Answer / laukik

Compile Time Polymorphism in Java is when you have the
several methods with same name and different parameters and
compiler has to decide how to select which method has to run
based on the arguments hence the name Compile time
polymorphism or method overloading.

Is This Answer Correct ?    0 Yes 0 No

What is compile time polymorphism?..

Answer / oneeb dadgar

It is also known as a Early-Binding.In this method, overloading method performs the different tasks at the different input parameters.

Is This Answer Correct ?    0 Yes 0 No

What is compile time polymorphism?..

Answer / dimuth lasantha

One method can use another method using changes functions and operations.We can can mention it as method overloading.its means method name can't be change but method body and return type can be change.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Core Java Interview Questions

what is the replacement method of stop() of thread

8 Answers   IBM, TCS,


Explain what is Marker interface?

0 Answers   BirlaSoft,


Iterator in the HashMap is fail-safe means what?

9 Answers   CTS, IBM, Subex,


What is polymorphism in java? What are the kinds of polymorphism?

0 Answers  


Give the hierarchy of inputstream and outputstream classes.

0 Answers  


What are the library functions in java?

0 Answers  


hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class

1 Answers  


Are registers volatile?

0 Answers  


How do you avoid global variables?

0 Answers  


What is the size of boolean variable?

0 Answers  


What is the r character?

0 Answers  


what are the jsp tags with example?

1 Answers   Photon,


Categories