Tip 1 : Practice coding questions of each difficulty level in the ratio of 3:2:1 (easy:medium:hard)
Tip 2 : Make sure that you have thorough knowledge of your projects/internships
Tip 1 : Update your resume to highlight your strengths
Tip 2 : Remove unnecessary courses in which you aren’t confident
50 MCQS with Coding outputs, digital design, probability, OS and DBMS.
The interviewer was nice and he made me feel comfortable
Topics :- Data structures, string manipulation and pointers
Timing :- Afternoon


If the given string is:
abcadeecfb
Then after deleting all duplicate occurrences, the string looks like this:
abcdef
I used a dictionary in python to count the occurrences of each letter in the word. I then used the keys of this dictionary to return the answer
The interviewer was very supportive and we had a good discussion regarding his role in cisco etc.
Questions on various topics were asked including my courses, resume and internship



nodes, where the nodes have integer values.
For the given binary tree:

The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].
The Preorder traversal will be [1, 3, 5, 2, 4, 7, 6].
The Postorder traversal will be [5, 2, 3, 7, 6, 4, 1].
I calmly understood the question and applied the correct tree traversal logic while handling the corner cases
This was a Machine learning problem. I was given a scenario where I had a dataset of many users with their likes and dislikes for many movies. Now given a user with some information about his movie preferences, I had to built a ML model which can suggest a movie to the user from the database. In other words, my ML model should be able to predict the likes/dislikes of that particular user for the entire movie database
I used the concept of transfer learning where I first trained a deep neural network on the entire movie and user dataset. Then I used this model and froze some initial and final layers of my neural network and trained my network again according to the limited data provided for that user’s movie preferences.
It was the HR round
I was asked to describe my strengths and weaknesses
Tip 1 : Explain your strength first
Tip 2 : Relate your weakness and strength attributes
Tip 3 : Explain the steps you are taking to improve on both
What has changed in me since I joined college?
Tip 1 : Be true to yourself and explain your journey year wise
Tip 2 : Provide a significant incident which further justifies your point.

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: