what is object slice?
Answers were Sorted based on User's Feedback
Answer / vivek
When a derived class object is assigned to a base class,
only the base class's part of content in the derived object
are copied to the base class, leaving behind the derived
class specific contents. This is referred as Object Slicing.
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / rajashekar reddy peta
Object slicing is defined as the conversion of an object into something with less information (typically a superclass).
Is This Answer Correct ? | 5 Yes | 2 No |
How many ways can an argument be passed to a subroutine?
3 Answers Technological University of the Philippines,
java Technical questions asked by JPMC
when asub class inherits a super class and overrides a public method of super class in sub class(public method in super class). why these methods needs to be public in sub class. (otherwise compile time error).
What do you understand by abstract classes?
Why does java does not support multiple inheritance? Explain
Explain the protected field modifier?
Sample code to retrieve objects from HashMap in sorted ascending order?
describe method overloading
Can we have two methods in a class with the same name?
What is local variable and instance variable?
What is loop in java?
What is the access scope of protected access specifier?