Quiz
Answer the following questions to test your knowledge of this chapter:
- What is the Java Class Library? Select all that apply:
- A collection of compiled classes
- Packages that come with the Java installation
- A
.jar
file that Maven adds to the classpath automatically - Any library that’s written in Java
- What is the Java external library? Select all that apply:
- A
.jar
file that is not included with the Java installation - A
.jar
file that must be added as a dependency inpom.xml
before it can be used - Classes not written by the authors of JVM
- Classes that do not belong to JCL
- A
- What functionality is included in the
java.lang
package? Select all that apply:- It is the only package that contains Java language implementation.
- It contains the most often used classes of JCL.
- It contains the
Object
class, which is the base class for any Java class. - It contains all the types listed in the Java Language Specification.
- What functionality is included in the
java.util
package? Select all...