what is polymorphism in java.
Answers were Sorted based on User's Feedback
Answer / samar
polymorphism is the way to process any thing in own
specefic way but with using same method name .
eg: car, bike, generator are the various class.
and start is method name.
class car
{
start();
}
class Bike
{
start();
}
class Generator
{
start();
}
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / addy
polymorphism means having more than one form.
for eg:-an automobile.in automobile we can have
car,bikes,bus etc.
| Is This Answer Correct ? | 1 Yes | 0 No |
The ability to take more than one form is known as
Polymorphism. By using the keyword interface Polymorphism
can be achieved.
| Is This Answer Correct ? | 1 Yes | 0 No |
what is runtime exception and compiletime exception ?
What is the difference between in-proc and out-of-proc?
Write a pseudo code to evaluate a number to any base given (2...16) based on the input. Number greater than 9 should be given as A-F for 10-15.
I m new to the dbms. Recently i came across words clustered indexes & nonclustered indexes but i dont know what is this all about & whats the difference between them.. So please help me!!!!!!!!
details description on this mantis? who is founder of this mantis?
what is static objects in java
Diff between Proc transpose and Arrays with example?
what is database?how to tell 3years boy or girl by using toys?
Why did you ever become involved in QA/testing?
we can use parameters in cl and rpg pgms...etc.in particular i think when we use data area or datastructure or data queue .i think this means which one====in my question...parameters cannot be passed in which one????hope understand my qstn???
which worker is involved in all the phases of SDLC?
There is a table which contains all the employee details, unfortunately there is mistake occured while entering the data. ex: ------------------------------- empid empname gender address ------------------------------- 1 abcd f address1 2 defg m address2 3 ghth m address3 4 jkil f address4 write a update query that will change gender 'm' to 'f' and 'f' to 'm'