Tip 1 : Networking, OS etc are easy to prepare
Tip 2 : DS cannot be improved without practice
Tip 3 : Wireless comm. was something that was particular to that role
Tip 1 : Keep it updated
Tip 2 : If you feel you don't have enough skills, watch videos/talk to people about what happens in the industry, this will give you at least some edge over a fresher
It was during the afternoon, I didn't go to office day because of the online test



Do not allocate extra space for another array. You need to do this by modifying the given input array in place with O(1) extra memory.
'n' = 5, 'arr' = [1 2 2 2 3].
The new array will be [1 2 3].
So our answer is 3.
Given an array of numbers sorted in ascending order, remove the duplicates such that each unique element appears only once. Entire relative order of the elements should be kept the same.
Coding question in face to face interview



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.

coding question in interview



I could not complete this, in the given time

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