Home Interview Questions and Answers Core Java Interview Questions and Answers For Freshers and Experience Part-4

core-java19. Can a main() method be overloaded?

Yes. You can have any number of main() methods with different method signature and implementation in the class.

20. Can a main() method be declared final?

Yes. Any inheriting class will not be able to have it’s own default main() method.

21. Does the order of public and static declaration matter in main() method?

No. It doesn’t matter but void should always come before main().

22. Can a source file contain more than one class declaration?

Yes a single source file can contain any number of Class declarations but only one of the class can be declared aspublic.

23. What is a package?

Package is a collection of related classes and interfaces. package declaration should be first statement in a java class.

24. Which package is imported by default?

java.lang package is imported by default even without a package declaration.

You may also like

Leave a Comment