Tip 1: Prepare DSA well, and I personally recommend Coding Ninjas for interview preparation.
Tip 2: Be confident and relaxed during the interview.
Tip 3: Revise your projects, including how they work and their functionalities.
Tip 1: Keep your resume short, ideally one page, and mention only the skills you are confident in.
Tip 2: Do not include false information on your resume.
2 Coding Questions.



Suppose given input is "abacb", then the length of the longest substring without repeating characters will be 3 ("acb").
I solved this question using a sliding window concept and took a map while traversing the string to check if any repeated characters appeared or not.



'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.
Solved by using Sliding Window.
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.



The given singly linked list is 6 -> 5 -> 3 -> 4 -> 7 -> 1 -> 2

The modified linked list should have all even values in starting and odd values in the end.
By taking two pointers and alternatively taking in that pointer and adding all even elements after odd elements.
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: