Tip 1 : Be confident about the things in your resume
Tip 2 : Be proficient in at least 1 coding language
Tip 1 : Do not put false things on resume else it will be get you in trouble.
Tip 2 : Be precise but accurate
Online MCQ test
There were 35 questions to be done in 40 mins which included 15 aptitude and 20 technical questions related to Ds Algo.
Around 120 students gave the test out of which 20 students were selected for further rounds .
Introduce yourself.
Bfs traversal and backtracking concepts .
After this round 6 students were shortlisted for second F2F interview.



Traverse the tree T in preorder fashion.
For every visited node in the traversal, see if the subtree rooted with this node is identical to S.
Design Facebook app using database concepts. further discussion on primary key, foreign key constraints etc.
further extended to implement mutual friends facebook feature using Data structures
I solved and explained using Graph
1. A mathematical puzzle was asked after i answered it, i was asked to code it .ps-it was very simple.
2.To find elements in second array which are not present in first array ? I solved it using hashing.
3. To reverse a string in minimum complexity and further 1 more string question was asked .
After this round 4 were shortlisted for HR round.



Input arrays/lists can contain duplicate elements.
The intersection elements printed would be in the order they appear in the first array/list(ARR1)
we store all elements of second array in a hash table. One by one check all elements of first array and print all those elements which are not present in the hash table.


‘S’ = “aabcd”, ‘M’ = 2, ‘A’ = [0, 1]
After 1st operation i.e, reversing from [0, 4], ‘S’ = “dcbaa”.
After 2nd operation i.e, reversing from [1, 3], ‘S’ = “dabca”.
Hence, the answer is “dabca”.

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?