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

What is heterogeneous in java?

0 Answers  


What is class level lock ?

0 Answers  


what are class,constructor and primitive data types?

2 Answers   IBM,


What is a ternary operator in java?

0 Answers  


What are data types in programming?

0 Answers  


why Java does not support multiple inheritances?

0 Answers   Aspire,


What modifiers may be used with a top-level class?

0 Answers  


What are the benefits of operations in java?

0 Answers  


What happens when heap memory is full?

0 Answers  


Is java owned by oracle?

0 Answers  


List the features of java programming language.

0 Answers  


What is regex java?

0 Answers  


Categories