Question List>Questa>Declare an array as - int numlist[]=new int[10]. Which of the following statements will get executed>without any errors/exception?>numlist[1]=10;>numlist[0]=10;>numlist[10]=100;>numlist[11]=100;
Answers
Answered by
8
Answer:
numlist[1]=10;
numlist[0]=10;
Explanation:
both of them are in range
Similar questions