Tip 1 : Practice as much as you can
Tip 2 : Be aware of the methodologies used in your project
Tip 1 : It should be in proper format
Tip 2 : Do not put false things on resume.
It was conducted on hackkerank. MCQs cover various topics including -Data Structures, Aptitude, etc


A diagonal traversal Consider lines of slope -1 passing between nodes.
1
/ \
4 2
/ \ \
8 5 3
/ \ /
9 7 6
Example: Here potential diagonals are:
1 -- 2 -- 3
4 -- 5 -- 7 -- 6
8 -- 9 -- 7
Input:
5
/ \
6 5
\ \
6 5
Output: 2
Explanation:
Diagonal 6 – 6 and 5 – 5 contains equal value. Therefore, the required output is 2.
This round was conducted on skype. Questions were mainly personality based rather knowledge.
Where do you see yourself in 5 years?
What are your strengths?
Tip 1 : Your answer has to be short, crisp and to the point. Here are some possible high-impact answers to help you leave
a great impression.
Tip 2 : In a job interview, you can be asked to describe who you are, Describe yourself in one word or Describe yourself in
3 words, but all such questions essentially mean that you talk about your skills and qualities.

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?