Tip 1: Practice DSA as much as possible with consistency.
Tip 2: Work on projects you truly understand, not ones that are just copied.
Tip 3: Build confidence through good communication skills.
Tip 1: Try to build your resume with a decent ATS score.
Tip 2: Mention only those things in the resume which you really know about, and not false information.
They gave me a pen and paper with MCQs written on it, 2 coding questions, and 2 questions related to quality testing. They seated me with their employees. The environment was chill, with submission of mobile phone and bag required. There were 15 MCQs based on DBMS, OOPS, SQL, and pseudocode.



Given an array arr[], the task is to reverse the array
I used the two pointers approach with left points at the beginning of the array and right points to the end of the array. Swapping the elements while left pointer is less than the right pointer, till the array is reversed.



Write a code for Insertion Sort in Array
1.Start from the second element: Assume the first element is sorted.
2.Compare and shift: For each element, compare it with elements in the sorted portion and shift larger elements one position to the right.
3.Insert the key: Place the current element into its correct position in the sorted portion.
4.Repeat steps 2 and 3 for all elements until the array is sorted.
It was scheduled after 15 mins of subjective round in HR cabin, the environment was quite and questions were generally related to background, future plans, why join this company etc.
Intro: Answer confidently with genuineness starting from the city you belong, school, college and interest.
Prefer testing: This is a tricky question but I answer with honesty that I think there is good scope and I felt interested in it.
Working in extra time: Answer this question by telling your willingness to contribute extra time when necessary, especially during critical project phases or tight deadlines.
Why hire: I answered it by telling that I am a perfect fit for this role with my background in Information Technology and my learning helps for this position.
After HR round, I was waited around 20 minutes at sitting area then I got called for the Final Technical Interview round with 3 people sitting there, the environment was tensed there because it is too much to ask at this role, the interview went for around 45 minutes.



Write a code for Quick Sort.
Step 1: I first wrote the Algorithm.
Step 2: After that I wrote the code in C++.



Program for Diamond Shaped Pattern.
Step 1: I gave the correct output.
Step 2: But I took too much time to find the correct solution.
Explain Hoisting in JavaScript? (Learn)

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