A.final
final is keyword which is used to restrict to user.final can be used to :
1.variable
2.method
3.class
1.final variable
If you make variable ad final.you can not change the the value final variable.
2.final method
If you make any method as final, you cannot override it.
3.final class
If you make class as final, you cannot extend it.
B.finally
finally is block which is associate with try, catch block.
E.g.
try
{
//code
}
catch
{
//code
}
finally
{
//code
}
C. finalize();
finalize() is method which is defined in object class. garbage collaction is invoke to clean up activities before destroying the object.