Vidyalelo
Data Structure · Q166

Arrays in Data Structures

Programming · Data Structure · question 166

Q166

What will be the resulting array after rotating arr[]=1, 2, 3, 4, 5 by 2?

A.
2, 1, 3, 4, 5
B.
3, 4, 5, 1, 2
Answer
C.
4, 5, 1, 2, 3
D.
1, 2, 3, 5, 4

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board