1.

What would be the output of following snippet, if compiled and executed with command line argument “java abc 1 2 3”? public class abc { static public void main(String [] xyz) { for(int n=1;n

A. 1 2
B. 2 3
C. 1 2 3
D. Compilation error
Answer» C. 1 2 3


Discussion

No Comment Found