Tip 1 : Prepare DSA well and I personally recommend Coding Ninjas and GeeksForGeeks 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.
2 Coding Questions



If the given input string is "aabc", then you should return "abc" as the longest substring without repeating characters.
If there are multiple substrings with the same length, then you should print the substring which comes earlier in the given string.
If the given input string is "abcda", here “abcd” and “bcda” can be the longest unique substring but “abcd” comes earlier in the given string. So we will print “abcd” as the longest unique substring.



'str' = abcad and 'k' = 2.
We can see that the substrings {ab, bc, ca, ad} are the only substrings with 2 distinct characters.
Therefore, the answer will be 4.
Asked me questions about python Implementation, and Computer Networking Questions.
The interviewer asked me 1-2 line approach to code. they want to ask for List Comprehension in Python.


Let 'N' = 5, 'K' = 4, 'A' = [2, 2, 2, 1, 1].
There exist only two subarrays, 'A[0…4]' and 'A[1…4]' having 'Pulse' greater than or equal to 'K'.
'Pulse' of 'A[0…4]' is 6 and the length is 5.
'Pulse' of 'A[1…4]' is 4 and the length is 4.
Since we have to minimize the length, therefore 4 will be our answer.
It was a managerial round where I was interviewed by a senior person who was interested in knowing my overall personality and my interests rather than my technical skills.
He discussed various technologies I was interested in, my internship experience, etc.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: