1 TCO 1 A Java source code file must contain Points 6 Aa pu
1. (TCO 1) A Java source code file must contain (Points : 6)
A)a public class which matches the name of the file.
B)a class with the main method.
C)all the public classes needed by the application.
D)the byte codes for the JVM to execute the file.
Solution
Option a is correct.
Bease to run the required java code should save the file name as the starting class name.

