java CommandArgs 1 2 3 4" />
java CommandArgs 1 2 3 4" />
Java Programming Language Java Language Fundamental
⚠ Report Question ✓ Question Verified
public class CommandArgs { public static void main(String [] args) { String s1 = args[1]; String s2 = args[2]; String s3 = args[3]; String s4 = args[4]; System.out.print(" args[2] = " + s2); } }and the command-line invocation is > java CommandArgs 1 2 3 4
Learn More MCQ Questions from Java Programming Language Java Language Fundamental
Assess your understanding of fundamental Java concepts with these multiple choice questions. Learn about the basics of the Java language and how to use it to create efficient and effective programs. Take the quiz now!