Tip 1 : Brush up all the basic and advance topics ever worked on
Tip 2 : Should have worked on multiple projects so, the same can be shared during the interview
Tip 3 : Practice coding questions on daily basis
Tip 1 : Keep the resume up-to-date
Tip 2 : Add all the projects you worked on
Tip 3 : Add skills with rating so, can be justified during interview
Managerial Round.
Happened during afternoon at around 3 pm.
Related to following topis:
1. Current work experience
2. Reason of resignation from current company
3. What do you expect in new job role?
4. Some questions to understand candidate point of view on certain situations
5. Salary expectation
Technical Round - 1 (Elimination Round)
Happened during afternoon at 3pm.
My camera and screen share was On during the interview.
Questions were related to following topics:
1. Python basics and advance
2. Git concept
3. What software development methodology followed previously?



Input: Linked List: 1 <-> 2 <-> 2 <-> 2 <-> 3
Output: Modified Linked List: 1 <-> 2 <-> 3
Explanation: We will delete the duplicate values ‘2’ present in the linked list.



If a string has 'x' repeated 5 times, replace this "xxxxx" with "x5".
The string is compressed only when the repeated character count is more than 1.
Consecutive count of every character in the input string is less than or equal to 9. You are not required to print anything. It has already been taken care of. Just implement the given function and return the compressed string.
Classes in python
Provided explanation orally and also some examples on the code editor.
Python decorators
Technical Round 2
Happened during afternoon at 3pm.
It was related to following topics:
1. Database concept
2. Django rest framework related questions
3. Questions on previous work experience
Interview was interactive and good.
How would you create models in DB for a post like we have on a social media platform
So, I created different model classes and also, relate them with foreign keys to show the relationships between them and explained the same to the interviewer.

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?