What is method Overriding in the perspective of OOPS?

Answers were Sorted based on User's Feedback



What is method Overriding in the perspective of OOPS?..

Answer / boss

Redefining the superclass method in the subclass. Means
redefining the implementation of superclass method in the
subclass

Is This Answer Correct ?    6 Yes 2 No

What is method Overriding in the perspective of OOPS?..

Answer / ravikiran(aptech mumbai)

method overriding is changing the exsiting functionality in
the subclass from the super class

Is This Answer Correct ?    6 Yes 5 No

What is method Overriding in the perspective of OOPS?..

Answer / ramakrishna yechuri

Itis the process of defining the member function in sub
class with same prototype as in base class.
super key word is used to invoke the base class members.

Is This Answer Correct ?    3 Yes 2 No

What is method Overriding in the perspective of OOPS?..

Answer / nisha singh

we can make the same method ,with same parameter is method
overriding can inherit the base class by using overrides
keyword.in base class we use virtual keyword nd in derive
class use override keyword

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Core Java Interview Questions

StringBuilder s = new StringBuilder("Hello Mom");s.append(",I mean,Mother"); Response.Write(s.ToString()); String s = "Hello Mom"; s+ = ",I mean Mom"; Response.Write(s); Which is faster ? which uses the most memory?

6 Answers   HCL,


What is lazy initialization in java?

0 Answers  


What is the preferred size of a component?

3 Answers   ITSA,


I have a class which is abstract which contains only the abstract methods. This is similar to an interface. Then, if i have given a choice to choose one of them. Which one i have to choose and why?

4 Answers  


What is predicate in java?

0 Answers  






What is variable explain with example?

0 Answers  


how we can make a read-only class in java?

0 Answers  


How do you get the length of a string in java?

0 Answers  


What is floating data type?

0 Answers  


Why java is not a pure object oriented language?

5 Answers   IBM,


what is language and it responsibilities

1 Answers  


What is the vector class in java programming?

0 Answers  


Categories