Chapter 12: Modules Flashcards

1
Q

What is the main purpose of the Java Platform Module System (JPMS)?

A

JPMS groups related packages into modules, allowing controlled access and improved code organization.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How does JPMS compare to JAR files?

A

Like a JAR file, but with explicit control over which packages are accessible outside the module.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the three key components of JPMS?

A

Module JAR format, JDK partitioning into modules, and additional Java tool command-line options.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a module in Java?

A

A group of one or more packages plus a module-info.java file that declares module properties.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Why were Java modules introduced? 5 items

A

To improve access control, dependency management, security, performance, and to support custom Java builds.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do modules provide better access control?

A

They allow packages to be accessible only within the module, preventing unintended access.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do modules improve dependency management?

A

They declare dependencies, enabling Java to detect missing JARs at startup instead of runtime.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a key advantage of using custom Java builds?

A

They include only necessary JDK components, reducing runtime size and improving efficiency.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do modules enhance security?

A

By omitting unused JDK parts, reducing exposure to vulnerabilities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do modules improve performance?

A

Smaller runtime size leads to faster startup and lower memory usage.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is unique package enforcement in Java modules?

A

Ensures each package comes from only one module, preventing conflicts and confusion.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do Java modules enforce strong encapsulation?

A

Packages are not accessible by default; only explicitly exported packages can be used by other modules.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What keyword is used to expose a package in Java modules?

A

The exports keyword, e.g., exports com.example.api;.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How can a module restrict access to its exported packages?

A

By using exports … to, e.g., exports com.example.api to com.example.moduleB; to limit access to a specific module.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How can a module allow reflective access to a package?

A

Using the opens keyword, e.g., opens com.example.internal to some.framework.module;.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does the requires keyword do in a Java module?

A

It specifies dependencies on other modules, ensuring only required modules are accessible.

17
Q

What does the –module-path option do in Java’s module system?

A

The –module-path option specifies the locations of required modules. It allows the Java runtime to locate and load modules that are needed for execution. Multiple module paths can be separated using ; on Windows or : on macOS/Linux.

18
Q

How do you execute a specific class from a named module using the –module option?

A

The –module option is used to specify a module and the class within it that should be executed.

19
Q

What is a named module in Java?

A

A named module is a module that has an explicit name defined in a module-info.java file. It is part of Java’s module system and follows strict encapsulation rules. Named modules explicitly declare their dependencies and exported packages.

20
Q

How is a named module different from an unnamed module?

A

A named module has a module-info.java file and follows strict module rules, whereas an unnamed module does not have a module descriptor and can access all other modules. Named modules provide better encapsulation and dependency management.