Given the following contents of the Java source code file MyClass.java, select the correct options:
// contents of MyClass.java package com.mypkg; import java.util.Date; class Student {} class Course {}
b, c
You can define multiple classes, interfaces, and enums in a Java source code file.
Option a is incorrect.
The import statement applies to all the classes, interfaces, and enums defined within the same Java source code file.
Option d is incorrect.
If a package statement is defined in the source code file, all the classes, interfaces, and enums defined within it will exist in the same Java package.