What is true about a final class?
class declared final is a final class.
Final classes are created so the methods implemented by that class cannot be overriddden.
It can't be inherited.
All of the above.