recategorized by
645 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

452
views
1 answers
1 votes
gatecse asked Dec 9, 2020
452 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
462
views
1 answers
1 votes
gatecse asked Dec 9, 2020
462 views
What is the output of the following program?abstract class sum { public abstract int sumOfTwo(int n1, int n2); public abstract int sumOfThree(int n1, int n2, int n3); ... $\text{Error}$
501
views
1 answers
1 votes
gatecse asked Dec 9, 2020
501 views
The static keyword is used in public static void main() declaration in Java:To enable the $\text{JVM}$ to make call to the main(), as class has not been ... $\text{JVM}$ to make call to the main(), as class has not been finalized
501
views
1 answers
1 votes
gatecse asked Dec 9, 2020
501 views
Which of the following Interface is not supported by $\text{JDBC}$ for connecting to Database in Java Programming language?Statement InterfacePrepared Statement InterfaceCallable Statement InterfaceDatabase Interface