Question 21
Given:
What is the result?
Question 22
A company has an existing sales application using a Java 8 jar file containing packages:
com.company.customer;
com.company.customer.orders;
com.company.customer.info;
com.company.sales;
com.company.sales.leads;
com.company.sales.closed;
com.company.orders;
com.company.orders.pending;
com.company.orders.shipped.
To modularize this jar file into three modules, customer, sales, and orders, which module-info.java would be correct?
A)
B)
C)
D)
Question 23
Given this requirement:
Module vehicle depends on module part and makes its com.vehicle package available for all other modules.
Which module-info.java declaration meets the requirement?
Question 24
Examine this excerpt from the declaration of the java.se module:
What does the transitive modifier mean?
Question 25
Given:
Which is true?
