What will be the output of the following Java snippet, if attempted to compile and run this code with command line argument "java abc Ram Shyam"?
public class abc
{
int a=2000;
public static void main(String argv[])
{
System.out.println(argv[1]+" :-Please pay Rs."+a);
}
}
public class abc
{
int a=2000;
public static void main(String argv[])
{
System.out.println(argv[1]+" :-Please pay Rs."+a);
}
}A. Compile time error
B. Compilation but runtime error
C. Compilation and output Ram:-Please pay Rs.2000
D. Compilation and output Shyam:-Please pay Rs.2000
Answer: Option A

Join The Discussion