adplus-dvertising
frame-decoration

Question

What would be the output of following snippet, if attempted to compile and execute?
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: (d).The snippet compiles and runs but does not print anything

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What would be the output of following snippet, if attempted to compile and execute?