recategorized by
596 views
1 votes
1 votes

In Java, for ensuring the persistence property, the class must implements:

  1. Serializable Interface
  2. Utilization Interface
  3. Threadable Interface
  4. Recognizable Interface
recategorized by

2 Answers

0 votes
0 votes
Serializable is a marker interface (has no data member and method). It is used to "mark" Java classes so that the objects of these classes may get a certain capability. The Cloneable and Remote are also marker interfaces. It must be implemented by the class whose object you want to persist. In Java, for ensuring the persistence property, the class must implement Serializable Interface

Interface Utilization

view lists the interfaces throughout the enterprise that are the most heavily used. The view is a table summary of the interfaces whose utilization exceeds the user-configured thresholds. This view is located on the Enterprise Overview page.
Answer:

Related questions

1 votes
1 votes
1 answer
1
gatecse asked Dec 9, 2020
416 views
Which of the following construct is not supported by Java Server Pages?$\text{JSP}$ Directives$\text{JSP}$ Scriptlets$\text{JSP}$ Actions$\text{JSP}$ Reaction
1 votes
1 votes
1 answer
4
gatecse asked Dec 9, 2020
466 views
Which of the following Interface is not supported by $\text{JDBC}$ for connecting to Database in Java Programming language?Statement InterfacePrepared Statement Interface...