Tip 1 : Choose any Object-oriented Programming Language.
Tip 2 : Practice DSA from all topics, and try to maintain a consistency.
Tip 3 : Be prepared with atleast 2 Projects.
Tip 1 : Be concise and don't use fancy fonts.
Tip 2 : Be honest and try to highlight your achievements.
This round contains both tech + more Apti questions
this is purely coding round and are some DSA problems



Input:
‘ARR’ = [-6,-3, 2, 1, 5]
If we take a square of each element then the array/list will become [36, 9, 4, 1, 25].
Then the sorted array/list will be [1, 4, 9, 25, 36].
Output :
[1, 4, 9, 25, 36].
step 1 : use two pointer one at 0 index and 2nd at last index and traverse from last
step 2 : check if square of element at index of pointer1 is less than square of element at index of pointer2 then store square of element of index pointer2 at position of pointer2 and then decrease pointer2
step 3 : else store the element at pointer1, swap the element at pointer1 and pointer2 then store square of stored result and decrease pointer 2
step 4 : in this way we have received a sorted array of square
This is Technical Round. Asked questions from Technical subjects as well as my Academic Projects



I used the concept of deque to solve this problem.



This is very very easy round , if u cleared all previous ones with full of confidence , this round is a just game for u.
Tell me yourself
relocation
share package details and company's culture

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