Tip 1 : Practice At least 50 + questions based on previously asked pattern
Tip 2 : Do a Live project on it so it will be helpful for you.
Tip 3 : Keep connected with industry people to learn more that how you can practice you can choose LinkedIn is the best platform
Tip 1 : Mention your live project in your resume.
Tip 2 : Showcase your skills or achievement and publication
Tip 3 : Never put false things in the resume
This round consisted of MCQ based + coding round, Mcqs based on data structure + aptitute+ reasoning + OOPS concept, Round was about 40 minutes. this is a proctored assessment

Input: 'A' = 5, 'B' = 3, 'C' = 4
Output: 3
Here only three possible combinations are:
(7, 5) Transfer 2 apples to the first basket and 2 apples to the second basket.
(9, 3) Transfer 4 apples to the first basket and 0 apples to the second basket.
(8, 4) Transfer 3 apples to the first basket and 1 apple to the second basket.
Only above combinations for (A, B) satisfies the condition that all 'C' apples are used and ('A' > 'B')
‘N’ = 5, ‘A’ = [2, 1, 4, 4 ,3]
Here we can form 2 groups, ‘[2, 1]’ and ‘[4, 4, 3]’. After individually sorting them, the array will be ‘[1, 2, 3, 4, 4]’ and is sorted. And it can be proved that this is the best answer.
Hence, the answer is 2.
This round is based only on Coding questions. there were 2 coding questions. the round was around 50 minutes. This is also a proctored round and the environment is hackerrank . Questions based on array + strings.






Binary String is a string that consists of only ‘0’s and ‘1’s.
A string ‘A’ is said to be a substring of string ‘B’ if ‘A’ can be obtained by deleting several characters(possibly none) from the start of ‘B’ and by deleting several characters(possibly none) from the end of ‘B’.
The substring must have a length greater than or equal to 1.
This is the HR round where HR and I connected on call.
A question was asked related to only relocation. she asked me some situation-based questions.
like where you see yourself after 3 years
Why did you choose this technical field?
What if sudden escalation came what 1st step do you do?
Are you ready to relocate?

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?