please dont create confusion in java we have single inheritance but not multiple inheritance and multiple inheritance can be accomplished by multiple interface inheritance in java ...
IS A relation ship is the alternative of inheritance ...
When you derive a class from a base class, the derived class will inherit all members of the base class except constructors, though whether the derived class would be able to access those members would depend upon the accessibility of those members in ...
How the Multiple Inheritance is problematic. In other words why this feature from C++ is not taken into Java?
what is the importance of inheritance in c# and why i used?
Classes are inherit from another class. Basically we are using OOPS for reusability, so inhertiance means deriving new class from base class, it occupies less memory. ...
What is the difference between inheritance and aggregation? When would you use one over the other
In Inheritance we have to extend the class where as in Aggregation no need to extend.Directly we can make use of other class in current class by creating object of other class(if required). ...
What is the danger of using public unsigned integers within a class?In a diamond-shaped inheritance hierarchy, how to ensure that only 1 copy of parent is created?
There are at least 2 questions here. The latter is answered but not the former.If the initial question is answered, there would be a requirement to highlight what the dangers are for both public unsigned and multiple inheritance. ...
event delegation model allows other objects to handle the events rather than the objects on which they were produced,Also uneccessary events are not handled. ...
There are two types are inheritence. 1) Multiple Inheritence. 2) Multilevel Inheritence. .NET Supports only Multilevel Inheritence. Ex: Public Class ParentClass Public Overridable Sub OIverridingMethods() ...
What does a triangular arrow shape with a solid line mean in UML? (The triangle is an outline, and not solid)A Aggregation B Association C Composite Aggregation / Composition D Dependency E Inheritance/Generalization
Answer: E
View page << Previous 1 2 3 [4] 5 6 7 8 9 Next >>

Go Top