Multiple choice Which of the following is the correct format of a Java program? class abc { Public static void main(String args[]) {……………} } class abc { public Static void main(String args[]) {……………} } class abc { Public static void Main(String args[]) {……………} } class abc { public static void main(String args[]) {……………} } Reveal answer Fill a bubble to check yourself D Correct answer Explanation The correct format for a Java program is as follows: class abc { public static void main(String args[]) { …………… } } Here, the keywords class, public and static must be in lower case. String is the class name.