The good news is that the strictfp modifier does not appear on the exam.

My mock exams once contained questions about the strictfp modifier, but I removed those questions to save Kathy and Bert the trouble of telling my mock exam users not to worry about it.
Some platforms are able to do floating point calculations with a level of precision that exceeds that which is required by the
Java Language Specification and by the IEEE 754 standard. Precision that exceeds the Java Language Specification can be good, but it can also contradict the "write once, run anywhere"
philosophy. In situations where you want to make sure that a floating point calculation produces the same result on any platform, you can use the strictfp modifier.
The strictfp modifier specifies an implementation detail that an overriding method is not required to support. For that reason, an application of the strictfp modifier to an abstract method declaration has no impact on the implementation of the overriding method in the subclass. Since the strictfp modifier is useless when applied to an abstract method, the Java Language Specification requires the compiler to throw a compile-time exception to let the programmer know that the modifier has no impact.