Tip 1: Practice at least 250 DSA questions on coding platforms to build problem-solving skills.
Tip 2: Build 1–2 real-world automation projects using tools like Playwright or Selenium to strengthen your practical knowledge.
Tip 3: Prepare strong test cases and bug reports from real apps (e.g., Flipkart, Netflix) to sharpen your QA skills.
Tip 4: Revise core manual testing concepts, SDLC/STLC, and test design techniques thoroughly.
Tip 5: Work on API testing using Postman and understand how to validate status codes, responses, and authorization.
Tip 6: Learn SQL basics, including joins, and practice writing queries on sample databases.
Tip 7: Mock interviews and resume reviews can boost your confidence and help identify blind spots.
Tip 1: Highlight real-world projects and their impact.
Tip 2: Keep your resume clean and concise by using bullet points, relevant keywords, and limiting it to one page if you have less than three years of experience.
It was scheduled around 6 PM IST and was a panel round.

Step 1: I started by calculating the total number of people that needed to be transported. This was done by simply summing up the people[] array.
Step 2: Initially, I considered using the cars in the order they were given, but I realized this might not lead to an optimal solution in terms of minimizing the number of cars used.
Step 3: To optimize, I decided to sort the capacity[] array in descending order. This allowed me to use the cars with the highest capacity first and reduce the total number of cars needed.
Step 4: I then picked cars one by one from the sorted list, subtracting their capacity from the total number of people until everyone was accommodated.
Step 5: I counted how many cars were used in this process, which gave me the minimum number of cars required.
The interviewer appreciated the greedy approach I used and my thought process of optimizing for the fewest cars rather than just matching capacities randomly.

Step 1: Split the sentence into words using .split().
Step 2: Iterate through each word and check:
If its length is even.
If it is longer than the previous even-length word encountered.
Step 3: Keep track of the longest even-length word found so far.
Step 4: If no even-length word is found, return '00'.
There is a closed room with three light bulbs inside.
How can you determine which switch controls which bulb in a single visit?
The following is a description of the instance of this famous puzzle involving 2 eggs and a building with 100 floors.
Suppose that we wish to know which stories in a 100-storey building are safe to drop eggs from, and which will cause the eggs to break on landing. What strategy should be used to drop eggs such that a total number of drops in the worst case is minimized and we find the required floor
It was around 2 PM IST. This was also a panel round, with panellists from Sweden and London. The interviewers were very approachable and friendly.
Be honest, concise, and use real examples. Highlight teamwork, adaptability, and openness to feedback. Show how you align with the company’s values and culture. Use the STAR method to structure your answers, focusing on growth, collaboration, and a positive mindset.

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