in Java, what is the initial value inside an array. For instance,
My complete code:
public class Job{
public Job(){
String jobTitle = "";
}//end constructor
Job[] x = new Job[20];
}//end Job class
What is inside x array, at index 0, 1, 2...etc.? Is every index filled with an empty string named jobTitle? Also, is this an array of Objects? Specifically Job objects?