// Quiz Q6: what does a freshly allocated double[] print?
public class DefaultArrayValue {
    public static void main(String[] args) {
        double[] a = new double[4];
        System.out.println(a[2]);
    }
}
