Que: Which of the following statements assigns (to the intElements variable) the number of elements contained in the intNums array?

a. intElements = Len(intNums)
b. intElements = Length(intNums)
c. intElements = intNums.Len
d. intElements = intNums.Length
Answer: intElements = intNums.Length

Leave a Comment