Tip 1 : Prepare your resume well.
Tip 2 : Deploy your projects so that the interviewer can view it. Also provide a hyperlink on your resume.
Tip 3 : Be thorough with Data Structures and Algorithms. Also prepare well topics such as OS,DBMS.
Tip 1 : Deploy your projects so that the interviewer can view it. Also, provide a hyperlink on your resume
Tip 2 : It's not important to have fancy projects. Only mention those on which you're confident.



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.

You have been given a column title as appears in an Excel sheet, return its corresponding column number.
For Example:
A -> 1
B -> 2
C -> 3
...
Z -> 26
AA -> 27
AB -> 28



The leaderboard scores are in descending order.
The game scores are given in ascending order.
The ranking pattern of a game's leaderboard is such that the player with the highest score is assigned a rank of 1. Players who have the same score are assigned the same ranking number, and the next player or group of players with a lower score is assigned the next sequential ranking number.




All the different rows are merged into a single row.
A multi-level linked list is a linked list in which each node can have multiple child nodes, each of which can be another linked list or a leaf node (a node that has no child nodes). The task of flattening a multi-level linked list is to rearrange the nodes of the list such that all the nodes appear in a single level linked list, with no child nodes.



1. The helper function ‘knows’ is already implemented for you.
2. ‘knows(A, B)’ returns "false", if A doesn't know B.
3. You should not implement helper function ‘knows’, or speculate about its implementation.
4. You should minimize the number of calls to function ‘knows(A, B)’.
5. There are at least 2 people at the party.
6. At most one celebrity will exist.
There are ‘N’ people at a party. Each person has been assigned a unique id between 0 to 'N' - 1(both inclusive). A celebrity is a person who is known to everyone but does not know anyone at the party.
Tell me about yourself.
Why should I hire you?
What are your strengths and weaknesses?
Why do you want to work at our company?
What is the difference between confidence and over confidence?

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