Tip 1 : One should give ample time to DSA, rushing it won't do any benefit.
Tip 2 : Consistency is the key, make sure that you're consistent and keep putting effort.
Tip 3 : Keep revising the core subjects of CSE i.e. OS, DBMS, Computer Networks
Tip 1 : Know your resume at the back of your hand.
Tip 2 : Don't copy-paste projects, the interviewers know sense it pretty quickly if they see a cookie-cutter code.
The selection process is fairly simple and consists of just one coding round, having 2 problems, based on basic concepts of Data Structures And Algorithms. The time limit was 1 hour. There were various sets having different questions, but the difficulty level was uniform for all sets.
The 2 questions in my set were:
Given two binary strings, find and return the sum of those two numbers represented by those strings.
Check If Two Nodes Are Cousins



The idea is to start from the last characters of two strings and compute the digit sum one by one. If the sum becomes more than 1, then store carry for the next digits.




4 and 7 are cousins of each other since they are at the same level and have different parents, 3 and 2 respectively.
Asked me about my projects and research internships.
Design a recommendation system for stock prediction of a company

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?