Tip 1 : Clear and simple resume
Tip 2 : Good in DSA
Tip 3 :Good communication skills
Tip 1 : Mention achievements ion clear way
Tip 2 : Simple resume.
Tip 3 : Work on technical subjects and mention in resume as well
Questions were asked from core computer science technical subjects. And 1 easy medium problem.



Medium questions asked in interview



1. A word is a sequence of one or more lowercase characters.
2. Words are separated by a single whitespace character.
For the given string 'A' = “coding ninjas coding ninjas” and 'B' = “data structures and algorithms”, so both the word 'coding' and 'ninjas' are not present in string 'B' and occur two times each, but the word “coding” is lexicographically smaller than the word “ninjas”. So the answer is “coding”.
1. I took the help of HashSet.
2. Serially, I was storing a character if HashSet did not contain that character.
3. When I encountered the first character which was already defined, then simply I returned that character.



Consider below matrix of characters,
[ 'D', 'E', 'X', 'X', 'X' ]
[ 'X', 'O', 'E', 'X', 'E' ]
[ 'D', 'D', 'C', 'O', 'D' ]
[ 'E', 'X', 'E', 'D', 'X' ]
[ 'C', 'X', 'X', 'E', 'X' ]
If the given string is "CODE", below are all its occurrences in the matrix:
'C'(2, 2) 'O'(1, 1) 'D'(0, 0) 'E'(0, 1)
'C'(2, 2) 'O'(1, 1) 'D'(2, 0) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(1, 2)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(2, 4) 'E'(1, 4)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(4, 3)
1. I took the help of HashMap.
2. Serially, I was storing a character if HashMap did not contain that character.
3. When I encountered the first character which was already defined, then I was iterating to hash map and whoever frequency was more than or equal to 2 I was storing in ArrayList.
4. Returned the ArrayList.
This was more about the managerial round.
What is the Round robin scheduling algorithm?
Tip 1 : Always answer in STAR method
What is memory management in OS?
1. Why HackerEarth?
2. Where do you want to see yourselves after 5 years?
3. Are you any member of your college coding team?

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