Tip 1 : Prepare your basics
Tip 2 : Try to practice as much as possible
Tip 3 : Give mock interviews as much as possible
Tip 1: Refer platform like overleaf or latex for a good format
Tip 2: Focus on the things that actually matter for interview and don't write anything fake



Each pair should be sorted i.e the first value should be less than or equals to the second value.
Return the list of pairs sorted in non-decreasing order of their first value. In case if two pairs have the same first value, the pair with a smaller second value should come first.
I purposed from brute force to best approach this is 2 pointers
hasArrayTwoCandidates (A[], ar_size, sum)
Sort the array in non-decreasing order.
Initialize two index variables to find the candidate
elements in the sorted array.
Initialize first to the leftmost index: l = 0
Initialize second the rightmost index: r = ar_size-1
Loop while l < r.
If (A[l] + A[r] == sum) then return 1
Else if( A[l] + A[r] < sum ) then l++
Else r–
No candidates in the whole array – return 0



The same letter cell should not be used more than once.
For a given word “design” and the given 2D board
[[q’, ‘v’, ‘m’, ‘h’],
[‘d’, ‘e’, ‘s’, ‘i’],
[‘d’, ‘g’, ‘f’, ‘g’],
[‘e’, ‘c’, ‘p’, ‘n’]]
The word design can be formed by sequentially adjacent cells as shown by the highlighted color in the 2nd row and last column.

Initially I purposed dfs solution with recursion in optimised way
Around design problem and development related
Design a ticket booking system like book my show and lot of cross question about seat holding and booking.
Tip 1: Ask lot of corner and question to clarify the requirements
Tip 2: Engage the interviewer as much as possible while giving the solution
Tip 3: Once interviewers agree then do the design
This round was HR round.
Lot of CV based questions, Tech stack and DB related questions.
Related to salesforce, How much I know?
Tip 1: Prepare you CV well
Tip 2: Prepare about the salesforce and what it does
Tip 3: Be confident and I you are not sure with any answer just clearly say no I am not aware.

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