Multiple Choice Question

Quiz Guidelines

 

QID: 
232
Tags: 
Question: 

Given:

double daaa[][][] = new double[3][][];
double d = 100.0;
double[][] daa = new double[1][1];

Which of the following will not cause any problem at compile time or runtime?

Select 2 options

A. daaa[0] = d;
B. daaa[0] = daa;
C. daaa[0] = daa[0];
D. daa[1][1] = d;
E. daa = daaa[0]

Q&A Set: