Tip 1 : need to be consistent. Cover every topic.
Tip 2 : don't just learn topics, understand them.
Tip 3 : try to cover all famous interview questions.
Tip 1 : make short and simple resume.
Tip 2 : be confident about every topic mention in your resume.
Pure Data Structure have been asked in this round. Many question that were asked are from leetcode. Questions were of medium level. Java was also asked. Java collections and their usage according to the given scenario. Need to be optimized with your answer.



1. There will be no leading zeros in any string in the list ‘BINARYNUMS’.
Consider N = 5 and the list ‘binaryNums’= [“0”, “01”, “010”, “100”, “101”]. This list consists of the binary representation of numbers [0, 1, 2, 4, 5]. Clearly, the missing number is 3 and its binary representation will be “11”. So you should return string “11”.
There are many approach to solve this problem. Need to use the most optimized approach. First i told to use the sum of N terms formula to find it out. Then he asked me to use more optimized approach. So I told him another approach to use sum of N terms A.P. Formula using first and last digit of array.



If the first linked list is 1 -> 2 -> 3 -> 4 -> 5 -> NULL and the second linked list is 4 -> 5 -> NULL.
The two numbers represented by these two lists are 12345 and 45, respectively. So, adding these two numbers gives 12390.
So, the linked list representation of this number is 1 -> 2 -> 3 -> 9 -> 0 -> NULL.
First I told using simple addition approach that we use to do sum of two numbers but then I told him more optimized approach as given in above link.
Basically it was a AVP/VP round. Many questions were asked testing problem solving skills, communication skills, behavioural of the candidate.
Questions related to previous employment work. Tech skills I learn from my previous company. Java interview questions. Basically it was a round to check candidate experience, whether he/she will be capable of handling tasks in Airtel or not. He told me the technology being used in Airtel.
Tip 1 : learn basic java.
Tip 2 : be clear with your projects.
Tip 3 : be clear with everything about your resume.
Questions asked like why you want to join us.
What was wrong in previous company as I switched within 10 months. What is your expectation ctc. How were my previous round. My Feed back about the interviews and interviewer.
Questions asked like why you want to join us.
What was wrong in previous company as I switched within 10 months. What is your expectation ctc. How were my previous round. My Feed back about the interviews and interviewer.
Tip 1 : tell everything genuinely.
Tip 2 : don't lie.
Tip 3 : good communication.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?