is this possible to create an array of 0 length?
if so how? if not so why?
coz we have an array in main() likw this
"static void main(String [] s) then what it signifies?

Answers were Sorted based on User's Feedback



is this possible to create an array of 0 length? if so how? if not so why? coz we have an array in..

Answer / priyanjan

Yes,it is possible to create the array of length 0. by
defining as:
int[] arr = {};

String[] s signifies the command line argument

Is This Answer Correct ?    29 Yes 0 No

is this possible to create an array of 0 length? if so how? if not so why? coz we have an array in..

Answer / ravikiran

it infers that the main method is capable of holding string
array as an argument

Is This Answer Correct ?    7 Yes 0 No

is this possible to create an array of 0 length? if so how? if not so why? coz we have an array in..

Answer / sushila

yes we can create array with 0 length.

public class A
{
static int b[];
public static void main(String args[])
{
System.out.println("-----------------");
System.out.println(b);
System.out.println("-----------------");
}
}

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is the difference between private & public & friendly classes?

0 Answers  


why java does not have operator overloading?

2 Answers  


What are the characteristics of Final,Finally and Finalize keywords.

0 Answers   Flextronics,


how to call one program .class file in another program

7 Answers   TCS,


What does this () mean in java?

0 Answers  






Is list ordered in java?

0 Answers  


What restrictions are placed on method overloading?

0 Answers  


How do you declare an empty string?

0 Answers  


Mention some interfaces implemented by linked list in java.

0 Answers  


Why method overriding is used?

0 Answers  


What is type parameter in java?

0 Answers  


What is a final class in java?

0 Answers  


Categories