多选题
Given that the current directory is bigApp, and the following directory structure:
bigApp
|-- classes
|-- source
|-- com
|-- wickedlysmart
|-- BigAppClassl.java
And the code:
package com.wickedlysmart;
public class BigAppClassl {
int doStuff() {return 42; }
}
And the following command-line invocations:
Ⅰ. javac -d source/com/wickedlysmart/BigAppClassl.java
Ⅱ. javac -d classes source/com/wickedlysmart/BigAppClassl.java
Ⅲ. javac -d classes/com/wickedlysmartsource/com/wickedlysmart/BigAppClassl.java
Which are true? (Choose all that apply.)