How do you force garbage collection to occur at a certain point?
forceGc()
gc()
requireGc()
D.
While you can suggest to the JVM that it might want to run a garbage collection cycle, the JVM is free to ignore your suggestion.
Option B is how to make this suggestion.
Since garbage collection is not guaranteed to run, Option D is correct.