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 |
What are abstract functions? Why are they used?
What is Polymorphism?
7 Answers MindCracker, Protech, TCS,
Can an interface implement or extend another interface?
What is a pure virtual function?
Is it possible to provide method implementations in java interfaces? If possible, how do we provide them?
Is it possible to override private virtual methods?
Explain what a method is?
How many methods are there in the serializable interface?
What are associative classes?
3 Answers InfoAxon Technologies, Protech,
Why is class hierarchies managed in object-oriented programming?
Does java support multiple inheritance? if not, what is the solution?
Can you create an instance of an interface?