What will be the output of the following Java snippet, if attempted to compile and execute?
class abc
{
public static void main(String args[])
{
if(args.length>0)
System.out.println(args.length);
}
}
class abc
{
public static void main(String args[])
{
if(args.length>0)
System.out.println(args.length);
}
}A. The snippet compiles, runs and prints 0
B. The snippet compiles, runs and prints 1
C. The snippet does not compile
D. The snippet compiles and runs but does not print anything
Answer: Option D

Join The Discussion