Oracle
1Z0-808 · Question #7
Given the code from the Greeting.java file: public class Greeting { public static void main(String[] args) { System.out.println("Hello " + args[0]); } } Which set of commands prints Hello Duke in the
Sign in or unlock 1Z0-808 to reveal the answer and full explanation for question #7. The question stem and answer options stay visible for context.
Java Basics
Question
Given the code from the Greeting.java file:
public class Greeting {
public static void main(String[] args) {
System.out.println("Hello " + args[0]);
}
}
Which set of commands prints Hello Duke in the console?
Options
- Ajavac Greeting java Greeting Duke
- Bjavac Greeting.java Duke java Greeting
- Cjavac Greeting.java java Greeting Duke
- Djavac Greeting.java java Greeting.class Duke
Unlock 1Z0-808 to see the answer
You've previewed enough free 1Z0-808 questions. Unlock 1Z0-808 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#command-line arguments#javac compilation#main() method#args parameter