What is a Persistent, Transient Object?
Answers were Sorted based on User's Feedback
Answer / priyadharshini.m
Persistent object is one which is stored even after the
creator of the object ceases to exist whereas transient
object only exist till the creator exists and not stored
permanently
Is This Answer Correct ? | 12 Yes | 1 No |
Answer / mahendran a
It is about what happens when the application is shutdown
and started again.
Persistent - These objects are stored during shutdown and
recreated when application is started again or when necessary.
Transient - Can not survive after application ends.
Is This Answer Correct ? | 8 Yes | 1 No |
Explain colloboration
What is the benefit of Composition over Inheritance?
How to define an abstract class?
What are the limitations of oops?
Can we have default method with same name and signature in the derived interface as the static method in base interface and vice versa?
What is an abstraction?
What is Overloading ? Is it similar to overriding ?
What is meant by “abstract interface”?
Differentiate between a class and a method.
How can we restrict inheritance for a class so that no class can be inherited from it?
What are the four phases of the Unified Process ?
What are abstract methods?