Tip 1 : Prepare basics first.
Tip 2 : Practise coding problems daily.
Tip 3 : Understanding of OOPS Concepts with real time examples.
Tip 1 : Modify your resumes for each job you're applying for by adding relevant achievements and skills.
Tip 2 : List your projects with a brief description.
MCQs and two programming questions were included in the online test. A 5-day window was given. We can select a slot within those 5 days based on our availability.



Let’s say we have an array 'ARR' {10, 12, 20, 30, 25, 40, 32, 31, 35, 50, 60}. Then we have to find the subarray {30 , 25 , 40 , 32 , 31 , 35} and print its length = 5 as our output. Because, when we sort this subarray the whole array will be sorted.



‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’.
‘ARR1’ = [3 4 6 9 10]
The idea is to begin from the last element of ar2[] and search it in ar1[]. If there is a greater element in ar1[], then we move the last element of ar1[] to ar2[]. To keep ar1[] and ar2[] sorted, we need to place the last element of ar2[] at the correct place in ar1[]. We can use Insertion Sort type of insertion for this.
A virtual interview was conducted. The interviewer was excellent, and each problem was thoroughly explained. About 60 minutes are spent on the interview. Coding questions along with other project based questions were asked..







If the input tree is as depicted in the picture:
The Left View of the tree will be: 2 35 2
All nodes that are the first nodes in their levels are shown on the left view. Level order traversal and printing the first node in each level is one of the simplest solution.
It was an online round. Interviewer asked some behavioural questions along with some aptitude questions. More of a one-one discussion.
Behavioural questions: Strength and weaknesses, leadership principles, approach of handling a task while working in a group.
Aptitude questions: Probability, Profit loss.
Tip 1 : Be honest.
Tip 2 : Use real life examples while answering something.
Tip 3 : Be Confident and quick while solving Aptitude questions.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?