Motto: About class loaders and nulls...
Q1: Which of the following class loaders is (are) written in C language to be as fast as possible?
Select one or multiple options:
- System class loader
- Platform class loader
- Bootstrap class loader
Q2: What's the output printed to console?
public static void main(String[] args) {
System.out.println(null == null);
}