English, asked by lisahaydon9567, 1 month ago

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 aniketsingh0305
8

Answer:

numlist[1]=10;

numlist[0]=10;

Explanation:

both of them are in range

Similar questions