ProgressSoft interview question

what is the difference between final and finally keywords in java ?

Interview Answer

Anonymous

30 Jul 2018

final is used to create a constant variable or to prevent override method or prevent inheritance while finally is used in try-catch block and will be always executed whether there is an exception or not