Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 7 Online
OpenStudy (anonymous):

public class EchoB { public static void main (String[] args) { System.out.println("Hello" + args[0] + " " + args[1]); }} What would be the output from this EchoB program if we invoke this program with the following command? java EchoB "How Are You?"

OpenStudy (anonymous):

If you mean calling main, when I tried it, it gave me an arrayIndexOutOfBounds error.

OpenStudy (espex):

It should produce, Hello How are because each of the arguments passed on the commandline are parsed by whitespace between them into individual strings. args[0] = How, args[1] = are ... etc. I didn't compile the code so I do not know what "this" code will produce, just the idea behind it. :)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!