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 is the function of dynamic typing?
How many methods are there in the externalizable interface?
Explain the meaning of object in object oriented programming?
What is a static method? Why do we need static methods in java 8 interfaces?
What are different types of arguments?
What are the main features of oops?
explain dynamic binding
Tell me something about abstract classes?
Do we require a parameter for constructors?
Why abstraction is important?
What are the major differences between late and dynamic binding?
If a class inherits an interface, what are the 2 options available for that class?