38. Given that a class, Test, declares a member variable 
    named "Scores" as an array of int as follows:

int Scores[];

Which of the following code fragments would correctly 
initialize the member variable Scores as an array of 4 
int with the value of zero if used in the Test constructor? 

Check all correct answers:
A. int Scores[] = {0,0,0,0} ;
B. Scores = new int[4] ;
C. Scores = new int[4] ;
   for( int i = 0 ; i < 4 ; i++ )
   { Scores[i] = 0 ; }
D. Scores = { 0,0,0,0 };