I refer to the OCP
Java SE11 Programmer I Study Guide by Jeanne Boyarsky and Scott Selikoff, specifically on chapter 11 on modules.
On page 459, in the table titled "What happened to the Classpath", "-class-path" is missing an additional "-" in front.
On page 476, in the table "More About Describing Modules", the first lines states that "You only need to know how to run - - describe-module for the exam." Basically, this table is saying that we don't need to know the details of the output for the exam, but it is providing us some information on the output anyway. Yet on page 488, question 14 is about the output of - - describe-module. The problem I had with this question was that I had difficulty deciding on answers A (requires java. base mandated) and D (requires mandated java.base). It seems that it is important that we need to know the exact placement of the "mandated" modifier. If you look at page 476 again, notice that we also have "requires zoo.animal.feeding transitive" in the output. Notice that the "transitive" modifier is also at the end, even though in module-info.java, it is immediately after "requires". So my guess is that - -describe-module puts all modifiers at the end. It could well be that in a later JDK version, they change the output of - - describe-module and place all the modifiers immediately after "requires". So my assumption is that the output of --describe-module is not important at all, and therefore we should not expect to see a question like question 14 in the exam. The authors should clarify on this.
On page 482, table 11.7, the -cp option (and its long forms) for the java command should be listed in the table for completeness (since it is also listed for javac). It is an option needed for the exam, as mentioned on page 22, table 1.4.
On page 489, I completely had no idea on the answer. It turned out that there is actually an --add-exports option for the java command. I can't seem to find this option mentioned anywhere else in the book. On page 482, table 11.7, it is also not listed there, so I assume that this option is not need at all for the exam. The authors should clarify on this.