Solved

Which of the Following Is the Correct Way to Instantiate

Question 19

Multiple Choice

Which of the following is the correct way to instantiate an array of 10 generic objects?


A) T[] x = new T[10];
B) T[10] x = new T[];
C) T[] x = (T[]) (new object[10]) ;
D) None of the above

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions