Tip 1 : Focus on coding skills
Tip 2 : Focus on aptitude skills
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.
- Morning time - Environment was good.
- N0 activity - Interviewer was good





Swap 1: We swap adjacent elements 90 and 21. So, ARR after one swap is [70, 60, 21, 90, 11].
Swap 2: We swap adjacent elements 60 and 21. So, ARR after one swap is [70, 21, 60, 90, 11].
Swap 3: We swap adjacent elements 70 and 21. So, ARR after one swap is [21, 70, 60, 90, 11].
The lexicographically smallest ARR after K = 3 swaps is [21, 70, 60, 90, 11].



If ‘N’ = 5, ‘ARR’ = {1, 2, 4, 5, 3}
You can sort the given arrangement in two steps.
In the first step select the student with roll number 4 (ARR[2]) and place him at the end, the arrangement now becomes: {1, 2, 3, 5, 3, 4}. In the second step select the student with roll number 5 (ARR[3]) and place him at the end, resulting in the arrangement: {1, 2, 3, 4, 5} which is in sorted order.
It is not possible to sort the given arrangement in less than two steps, therefore we will print 2.



1) A subarray is a part of the array which is contiguous (i.e. elements in the original array occupy consecutive positions) and inherently maintains the order of elements. For example, the subarrays of the array {1, 2, 3} are {1}, {1, 2}, {1, 2, 3}, {2}, {2, 3}, and {3}.
2) Bitwise OR operation takes two numbers and performs OR operation on every bit of those two numbers. For example, consider two numbers 2 and 3 their bitwise OR will be 3. Because the binary representation of 2 is 10 and the binary representation of 3 is 11. And OR of 10 and 11 will be 11 which evaluates to 3.
3) The array may contain duplicate elements.



There are no leading zeros in both the strings, except the number 0 itself.
Do not use any built-in Big Integer Library.
If, A = 123, and B = 456.
So the product of both numbers will be 56088.
- Morning time
- Environment was good.
- No other activity
- Interviewer was good
What critical feedback do you most often receive?
What have been your most positive and negative management experiences?
Strength and Weekness?
Tell me about yourself?
Why you wants to join us?
Tip 1 : Practice in front of mirror
Tip 2 : Keep your communication smooth
Tip 3 : Keep calm

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?