Java - Command Line Arguments
What will be the output when running this Java program with arguments:
java Example red blue?
public class Example {
public static void main(String[] args) {
System.out.println(args[0] + " and " + args[1]);
}
}