Explain JPA in Java.
Answer / nashiinformaticssolutions
The Java Persistence API enables us to create the persistence layer for desktop and web applications. Java Persistence deals in the following:
1. Java Persistence API
2. Query Language
3. Java Persistence Criteria API
4. Object Mapping Metadata
Is This Answer Correct ? | 0 Yes | 0 No |
What is meant by call by reference?
What is the disadvantage of synchronization?
Catch(Exception e){ } in that what is Exception and purpose of that in that place exactly?
Can memory leak in java?
How java enabled high performance?
Is array synchronized in java?
What is a line break?
What are the important features of Java 8 release?
What is the difference between heap and stack memory?
Which characters are allowed to use as the second character of an identifier, and which characters are not allowed?
Explain the concept of hashtables?
class A { public void disp(int a,int b) { System.out.println("hai"); } } class B { public void disp(int a,int b,int c) { System.out.println("hai"); } } above program is overloading or overriding?