Array rotation in java

              Array Rotation in java,C,Python

Hey programmers i want detail code for this following problem .and also write code in comment section.or mail me.

Defination::

Given an array of N size. The task is to rotate array by delements where d is less than or equal to N.
Input:
The first line of input contains a single integer T denoting the number of test cases. Then T test cases follow. Each test case consist of three lines. The first line of each test case consists of an integer N, where N is the size of array.
The second line of each test case contains N space separated integers denoting array elements. The third line of each test case contains "d" .
Output:
Corresponding to each test case, in a new line, print the modified array.
Constraints:
1 ≤ T ≤ 200
1 ≤ N ≤ 200
1 ≤ A[i] ≤ 1000

Example:
Input
1
5
1 2 3 4 5
2
Output
3 4 5 1 2

Comments