Hai all
I want to print given array in reverse order Ex:
int a[]={1,2,3,4,5};display this array in reverse order.

Answers were Sorted based on User's Feedback



Hai all I want to print given array in reverse order Ex: int a[]={1,2,3,4,5};display this array in..

Answer / nagesh

for(int i=a.length-1;i>=0;i--){
System.out.println(a[i])
}

Is This Answer Correct ?    9 Yes 1 No

Hai all I want to print given array in reverse order Ex: int a[]={1,2,3,4,5};display this array in..

Answer / anandkumar

hai kumar you r wrong
with use of loop only we can reverse...
we can't do it with reverse() method b'coz this is not String Type....

Is This Answer Correct ?    2 Yes 0 No

Hai all I want to print given array in reverse order Ex: int a[]={1,2,3,4,5};display this array in..

Answer / kumar

Either you can use the for loop or reverse() method to
display the results in reverse order.

Is This Answer Correct ?    1 Yes 2 No

Hai all I want to print given array in reverse order Ex: int a[]={1,2,3,4,5};display this array in..

Answer / guest

5
4
3
2
1

Is This Answer Correct ?    0 Yes 9 No

Post New Answer

More Core Java Interview Questions

Is special character in java?

0 Answers  


What does escaping a character mean?

0 Answers  


What is a function easy definition?

0 Answers  


What is flag in java?

0 Answers  


What is the use of a conditional inclusion statement in Java ?

0 Answers   Global Logic,






What is java life cycle?

0 Answers  


What is exception hierarchy in java?

0 Answers  


What is the difference between preparedstatement and statement in java?

0 Answers  


What is object-oriented programming?

0 Answers  


Explain about anonymous inner classes in java?

0 Answers  


What is java console application?

0 Answers  


What is the basically use of finally while we know it is always executed but why?

5 Answers   Oracle, TCS,


Categories