InterviewSolution
| 1. |
What Is Core Class ? |
|
Answer» A public class (or interface) that is a standard member of the Java Platform. The intent is that the core classes for the Java platform, at minimum, are AVAILABLE on all operating systems where the Java platform runs. A program written entirely in the Java PROGRAMMING language RELIES only on core classes, meaning it can run ANYWHERE. A public class (or interface) that is a standard member of the Java Platform. The intent is that the core classes for the Java platform, at minimum, are available on all operating systems where the Java platform runs. A program written entirely in the Java programming language relies only on core classes, meaning it can run anywhere. |
|