Tip 1 : Prepare fundamental theory well
Tip 2 : Prepare Easy and medium level questions
Tip 3 : Go through you resume well
Tip 1 : Make your resume relevant
Tip 2 : Mention projects



The Linked Lists, where a1, a2, c1, c2, c3 is the first linked list and b1, b2, b3, c1, c2, c3 is the second linked list, merging at node c1.

public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
if(headA==null || headB==null) return null;
ListNode tempA = headA;
ListNode tempB = headB;
while(tempA!=tempB){
tempA = (tempA==null)?headB:tempA.next;
tempB = (tempB==null)?headA:tempB.next;
}
return tempA;
}
What are the wait() and sleep() methods?
What is Runnable and Callable Interface?
how to convert monolithic to microservices?
Introduce yourself
How can you support work?
What are your hobbies?

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