Q: Java: When was Randy Chapman's Linux JDK released?
A: Late in 1995.
Q: Java: Does the compiler automatically call super.finalize() inside finalizers?
A: No.
Q: Java: Does Java have 'virtual' methods?
A: Yes: every method is 'virtual'.
Q: Java: What package would you look up to find out about GUI events?
A: java.awt.event.
Q: Java: How should you check whether a thread has been interrupted?
A: Call Thread.isInterrupted().
Q: Java: When was WebRunner (AKA HotJava) written?
A: September of 1994.
Q: Java: What package provides BigDecimal & BigInteger?
A: java.math.
Q: Java: What happens when a huge double is converted to float?
A: It becomes +-infinity.
Q: Java: Is 'virtual' a Java keyword?
A: No.
Q: Java: What exception is thrown if an applet tries to access the filesystem?
A: SecurityException