What is the public static void main(String args[]) & System.out.println()

Public: public keyword is an access speciferstatic :allows main to be call without any instance of a timevoid: does not return any valuemain: main() is the method where java Applications beginSting args[] recives command line argumentsSystem: System is predefined class that provides access to the systemout : out is o/p streamprintln():displays the output

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions