Multiple Choice
Which of the following is the proper method to dynamically allocate memory to an array of 100 elements
A) var c = new c[ 100 ];
B) var c = new c( 100 ) ;
C) var c = new Array[ 100 ];
D) var c = new Array( 100 ) ;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q1: What is the effect of the join
Q2: Pass-by- _ is the method of passing
Q3: Which of the following is an illegal
Q4: What would the browser output if the
Q5: What does the following code do<br>For (
Q7: In JavaScript, numbers and boolean values are
Q8: The first statement below _ the array
Q9: _ are data structures consisting of related
Q10: Which of the following is the proper
Q11: By default, the JavaScript sort method uses