Tip 1: Focus on the Algorithms and Data Structures Questions (Although it is used very less in the work environment of QA, but they ask it in interviews)
Tip 2 : Don't ignore the different aspects of Manual Testing. Read About it.
Tip 3 : You should have a good command of Java. If you are looking for Automation, Java + Selenium is a must.
Tip 4 : If you have any working project like me then it is a big big plus point.
Tip 1 : Mentioning Working Project on the Resume is a game-changer
Tip 2 : Don't elaborate too much about the project/work experience. Details should be Short, precise, and crisp. Keep something to tell in the interview.
Tip 3 : Never never put false information on the resume. And try to be honest in the interview for most of the part if not the whole.
It was an office interview. The experience was quite nice and the interview was all professional from start to end.



We have a linked list 1->2->3->4->5->6->7 and so on. You are supposed to swap pairs of a linked list like swap (1,2), (3,4), (5,6), and so on.
1. You may not modify the data in the list’s nodes; only nodes themselves may be changed. Because imagine a case where a node contains many fields, so there will be too much unnecessary swap.
2. If a pair of a node does not exist, then leave the node as it is.
I solved the problem in python. I started from the head node and traversed the list. While traversing swap data of each node with its next node’s data.
It was again very professional and the interviewer was very friendly. So I would say it is a more friendly discussion than an interview. We talked about my education, goals, and achievements and we had in-depth discussion about my future goals
What you want to do in the future?
Where you see yourself after 5 years?
What are your weaknesses?
Tip 1 : Be honest while answering
Tip 2 : Keep the answer precise to the point
Tip 3 : Smile...while answering. Be happy don't take any stress even if you are not feeling confident.
Tip 4 : Give answer in the language in which you are confident. English is good but not must

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?