+1 vote
in JAVA by

What is the difference between final and finally in Java?

1 Answer

0 votes
by
final is a keyword used to declare a constant in Java, while finally is a block in Java that is used to specify the code that should be executed regardless of whether an exception is thrown or not.
...