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
Can we create object of static class?
What do you mean by default constructor in java?
When do you call copy constructor?
What is the public field modifier?
What is double checked locking in singleton?
Give us a program to check for parenthesis matching using stack.
Can private class be extended java?
What are different types of constants?
What is finalize() function in java?
What is http client in java?
What lambda means?
How do you square a number in java?
What is the difference between class & object?
What is the output of the below java program?
What is variable explain with example?