Tip 1 : The interviewer really liked the project which I have done so two quality project is really helpful for 1-2 years of experience.
Tip 2 : Development skills and projects which you have or worked in previous organization.
Tip 1 : Have some quality projects on resume
Tip 2 : Write your technology stack from previously company ans show then how you have solved their existing problem.
This round was scheduled in the afternoon and was held on the google meet. The inverviewer was very gentle and seems to be very knowledgeable in her domain.



A 'deep copy' of a linked list means we do not copy the references of the nodes of the original linked list, rather for each node in the original linked list, a new node is created.
I first created the copy of the node and the next pointer. After that iterating the old array and updating the pointer. I have used a extra space for this question. Interviewer asked me the approach for solving it in constant space, which I was not able to explain.



Consider the array {2,1,5,6,3,8} and 'K' = 3, the sorted array will be {8, 6, 5, 3, 2, 1}, and the 3rd largest element will be 5.
1) Kth largest element in an array is the kth element of the array when sorted in non-increasing order.
2) All the elements of the array are pairwise distinct.
For lagest element in an array, I have iterated the array and check whether the present element is greater than the element stored in max variable or not. If it is greater then update the variable.
For Second largest element - I've used two variables and stored the largest and second largest in that variable.
For kth largets element - I've used Priority Queue(min heap) in java for solving this problem
Internal Implementation of ArrayList?
Runnable is preferred for making thread. Why?
Serialization in java?
Multi-threading
Difference between HashMap and Concurrent Hash Map
Checked and unchecked exception in Java
Can we use object as a key in hashmap in Java?
How to sort the HashMap based on the values.
what is Executor framework in Multithreading with example.
Three ways to iterate the HashMap
Tip 1: Always try to explain these types of question with example and show them output with data.
This round was taken by the Project Head and he was basically testing my problem solving skills.
This round was like technical and as well as manegerial as well.
Questions was like -
How will I implement the concurrency system in CMS tool?
How will you innovate the product which they have and what functionality shoud I add?
Some SQL queries was also asked.
Will I am willing to relocate or not?
What is the team size in which I am working in present organization?
Salary discussion

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