Saved Bookmarks
| 1. |
Describe the various part of java program |
|
Answer» Answer: CLASSES are the main and ESSENTIAL elements of any Java program. Every Java stand-alone program requires the main method as the starting POINT of the program. ... There may be many classes in a Java program, and only one CLASS defines the main method. Methods contain DATA type declaration and executable statements. |
|