Tip 1 : Prepare to explain your project experience work in accurate method.
Tip 2 : Practice hand on for test case scripting
Tip 3 : Practice OOPS related case studies
Tip 1 : Showcase your past project experience categorically and detailed
Tip 2 : Use all the skills learned, used or you know with proper explanation
Online test was consisting of objective questions on aptitude, logical, reasoning and software technology domain based (60 mins) + 2 coding questions (30 mins). The test link was valid for 24 hrs.

1. Iterate the array using the loop.
2. Check whether the given key present in the array i.e. arr[i] == key.
3. If yes,
print "Search Found".
4. Else
print "Search Not Found".



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
Initialize three pointers prev as NULL, curr as head, and next as NULL.
Iterate through the linked list. In a loop, do the following:
Before changing the next of curr, store the next node
next = curr -> next
Now update the next pointer of curr to the prev
curr -> next = prev
Update prev as curr and curr as next
prev = curr
curr = next
It was around 5 pm. The interviewer started with his own introduction and then asked for mine. He also asked about my prior experience in details and the reason for leaving the previous company. Then he asked me some testing domain based questions and some test case studies. Post that he asked me a Data structure problem. After that he was satisfiedn enough and the interview ended.
Write Test Case for ATM.
Tip 1: Break the usage/ functioning of ATM into several part
Tip 2: Subdivide categories to failure and success cases
Tip 3: Now start writing the script in the sequential way ATM works
Timing 12 pm afternoon.
Introduction, prior experience, behavioral questions, Date of joining and other formalities discussion and then compensation discussion.
What steps will you take if you find out your senior is harassing one of your colleague?
Tip 1: Understand the completed statement
Tip 2: Analyse the situation
Tip 3: Look for the answer which is a best fit for the organization.

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?