Tip 1 : Practice question on interviewbit /leetcode of each data structures thoroughly
Tip 2 : Do projects based on new technologies with proper understanding. Maximum 2 is sufficient. :
Tip 1 : It should me crisp and should not contain any false information.
Tip 2 : Adding about internships and achievement if available
It consists of three coding question which were easy and related to basic data structures array and linked list



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
I used the recursive approach to reverse a linked list, just we have to divide the linked lists in two parts - first node and the rest of the linked list, and then call the recursion for the other part by maintaining the connection.



I used unordered set for this problem
I had counted the frequency of each letter and then return the one whose count was maximum



It was mathematical approach you can refer to the link for better understanding.
It was first technical interview
Firstly I introduce myself, then interviewer asked question related to time complexity of popular algorithms quict sort, binary searching in all three cases.
Secondly he gave one coding problem related to linked list.
After that interviewer asked few sql queries related to join and count.



In the given linked list, there is a cycle, hence we return true.

This round focused on project which I mentioned in my CV.
The interviewer ask about the challenges faced in making the project, technologies which were used in this project, question related to that technology and so on.
After that he gave me one question related to tree and asked its approach part only.



Input: Consider the binary tree A as shown in the figure:

Output: [10, 5, 3, 7, 18, 25, 20]
Explanation: As shown in the figure
The nodes on the left boundary are [10, 5, 3]
The nodes on the right boundary are [10, 20, 25]
The leaf nodes are [3, 7, 18, 25].
Please note that nodes 3 and 25 appear in two places but are considered once.
The question was similar to it
I had used level order traversal approach..

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: