Core Java Interview questions


Total available count: 646
Subject - Java Technologies
Subsubject - Core Java

What is final class and give example for final in java?

A class when set to final means it can not be extended by any other class.Example for final class is a String Class in java.lang package.




Next 5 interview question(s)

1

What are the different types of non access modifiers available in java?

2

What is meant by non access modifier in java?

3

What is meant by access modifier in java?

4

Can we shuffle the words public, static and void of main method in java?

5

Is there any difference if i use public static void main(String[] args) instead of public static void main(String args[])?