9
In this code there is a block of Try/catch with a Return within it.
try {  
    alguma_coisa();  
    return successo;  
}  
catch (Exception e) {   
    return falha;  
}  
finally {  
    System.out.println("Eu não sei se será possível printar esta mensagem");
}
Running this code would be simple, but the idea of the question is:
Not only on this occasion, but, the block Finally will always be called in Java?