What will be output of this simple java program ?
Click button below to answer the quiz on for each loop :
© 2015 – 2016, https:. All rights reserved. On republishing this post, you must provide link to original post
0 of 1 questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
0 of 1 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
In for-each loop, the iteration variable is read-only as it relates to the underlying array.
An assignment to the iteration variable has no effect on the underlying array. So, you can’t change the contents of the array by assigning to new value.
In for-each loop, the iteration variable is read-only as it relates to the underlying array.
An assignment to the iteration variable has no effect on the underlying array. So, you can’t change the contents of the array by assigning to new value.
© 2015 – 2016, https:. All rights reserved. On republishing this post, you must provide link to original post
#
#