Tip 1 : Be congident
Tip 2 : Be clear
Tip 3 : Practice Atleast 350 Questions
Tip 1 : Keep it concise and clear: Your resume should be easy to read and should highlight your most important qualifications and achievements. Use bullet points, short sentences, and a clear font to make your resume easy to skim.
Tip 2 : Quantify your achievements: Use numbers, percentages, or other metrics to highlight your accomplishments, such as "increased sales by 25%" or "managed a team of 10 employees."
This round consists of 2 coding questions in 120 mins



Create a new binary search tree.
Traverse the linked list and add each element to the binary search tree one by one.
To add an element to the binary search tree, compare it with the current node of the tree.
If the element is less than the current node, add it to the left subtree.
If the element is greater than the current node, add it to the right subtree.



The ‘ARR’ = [1, 2, -3, -4, 5], the subarray [5, 1, 2] has the maximum possible sum which is 8. This is possible as 5 is connected to 1 because ‘ARR’ is a circular array.
Create a new matrix with the same dimensions as the input matrix.
Initialize the first row and column of the new matrix to be the same as the input matrix.
For each element in the new matrix (excluding the first row and column), check if the corresponding element in the input matrix is 1.
This is a Technical interview

Input: 'a' = 5, 'arr' = [1, 2, 3, 4, 5]
Output: [2, 3, 4, 5, 1]
Explanation: We moved the 2nd element to the 1st position, and 3rd element to the 2nd position, and 4th element to the 3rd position, and the 5th element to the 4th position, and move the 1st element to the 5th position.



1. When N is odd consider the middle element to be part of 1st half.
2. The sum should not contain any leading zero, except the number 0 itself.
Given Linked List: 1-2-3-4-5-5-6
First half: 1-2-3-4
Second half: 5-5-6
Output Linked List: 1-7-9-0 = (1234 + 556 = 1790)
Can you add both halves without finding the length of Linked List and in O(1) space?
The HR round of an interview typically focuses on assessing your communication skills, personality, and overall fit for the company culture. Here are some common topics and questions you might encounter in an HR interview:
Introduction and background: The HR interviewer might start by asking you to introduce yourself and talk about your background, education, and work experience.
Motivation and career goals: You might be asked about your motivation for applying to the company and your career goals, both short-term and long-term.
Strengths and weaknesses: The HR interviewer might ask about your strengths and weaknesses, as well as how you've worked to improve your weaknesses.
Teamwork and communication: You might be asked about your
Tell me about yourself.
What is your education background?
What are your strengths and weaknesses?

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