Answer:
10 8 6 4 2
Step-by-step explanation:
If the mentioned code put inside in a static void main() of a public class the it will produce the aforesaid output. In the code, an array is traversed from the back. As array has elements till index 4 so, loop is started with j=4 and till j=0 and each time value of j is decremented and element corresponding to that index is printed each time on a same line. After whole array printed , a new line is printed as well.