What is meant by final class, methods and variables?
Answer Posted / suresh chand
final class: we can't inherit that class
final method: we can't override that method
final variable: we can't change the value of that var.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is an object in java and how is it created?
Why java is called not pure object oriented language?
Why stringbuilder is not thread safe?
What is scope & storage allocation of static, local and register variables? Explain with an example.
What is the difference between integer parseint and integer valueof?
What is java util function?
What are the types of java?
How many types of methods are there?
Which eclipse is best for java?
What are the types of literals?
How do you implement singleton class?
Can a static member function access member variable of an object?
Explain java coding standards for constants?
What is deserialization?
What is the difference between method overriding and overloading?