we have a question on our exam a couple of days ago..it is True or False.
This is the question
int[]list = new int[10];
the statement
list[5] = list[3] + list[2];
updates the content of the fifth component of the array list.
------------------------------------------------------------------------------------------------------
The correct answer here is False..the problem is I don't get it why is it False..
can someone explain this to me.. :D
This is the question
int[]list = new int[10];
the statement
list[5] = list[3] + list[2];
updates the content of the fifth component of the array list.
------------------------------------------------------------------------------------------------------
The correct answer here is False..the problem is I don't get it why is it False..
can someone explain this to me.. :D
Comment