Q10
How do you access the last element of an array named 'values' in C#?
A.
values[length(values)];
B.
values[values.Length - 1];
AnswerC.
Last(values);
D.
None of the above
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board