Multiple choice technology programming languages

Given the following directory tree, you must enable assertions for everything except for FileTwo. base |firstLevelDirectory |_Foo |_Bar | secLevelDirectory |_FileOne |_FileTwo What command-line code should you use?

    1. java -ea -da:base.firstLevelDirectory.secLevelDirectory.FileTwo
    1. java -ea:base.firstLevelDirectory.secLevelDirectory.FileTwo -da
    1. java -ea:base... -da:base.firstLevelDirectory.secLevelDirectory...
    1. java -enableassertions -disableassertions:base.FileTwo
Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

To enable assertions for everything except FileTwo: java -ea (enable all) then -da:base.firstLevelDirectory.secLevelDirectory.FileTwo (disable specific). Option A is correct. Options B, C, D are incorrect - they either disable all assertions, use wrong syntax (... not valid for package disable), or use incorrect package path structure.