Tip 1 : Prepare DSA well and I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation.
Tip 2 : Be confident & relaxed during the interview.
Tip 3 : Do revise your projects i.e how it works and what are its functionalities.
Tip 1: Make your resume short and try to make it one page only and mention all your skills that you are confident in.
Tip 2: Do not put false things on your resume.



Input: 'arr' = [2, 2, 2, 2, 0, 0, 1, 0]
Output: Final 'arr' = [0, 0, 0, 1, 2, 2, 2, 2]
Explanation: The array is sorted in increasing order.
The test was divided into 2 sections (SD profile and CSD profile). For the SD profile, there were 3 DSA questions with medium difficulty, and for the CSD profile, there were 2 DSA questions with hard difficulty (Graphs + DP).



The simple idea of Kadane’s algorithm is to look for all positive contiguous segments of the array. By using Kadane's Algo Solved this problem.
The interviewer asked me two coding questions in this round.



Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams.
'triangle' and 'integral'
'listen' and 'silent'
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct.
I first applied Count Characters
then solved using Hashmap.



Sorting and Two pointers.
Tell me about yourself
Project discussion
Why should we hire you
Tip 1: Be confident during the interview.
Tip 2: Please ask questions at the end of session

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?