public class Foo {
public void main( String[] args ) {
System.out.println( “Hello” + args[0] );
}
}
What is the result if this code is executed with the command line?()
A. Hello
B. Hello Foo
C. Hello world
D. Compilation fails.
E. The code does not run.