The correct answer is b.
All arrays of reference type variables such as String are initialized to the special null value.
publicclass MainClass{
publicstaticvoid main(String[] argv){
String[] types = new String[ 20 ] ;
System.out.println(type[0]);
}
}