InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by Java Annotations? |
|
Answer» Annotation is a tag in Java that represents metadata attached with a class, METHOD, interface, or field. It PROVIDES supplement information to be used by compiler and JVM. Annotations do not change a COMPILED program's action and they are not pure comments. If you are preparing for interviews, you can check core java interview questions and answers for more insight. |
|