Tip 1 : Try must do coding questions from geeksforgeeks
Tip 2 : Revise DSA concepts throughly
Tip3 : While practicing pay attention to how much time you are devoting to each question
Tip 1 : Add what you know exactly
Tip 2 : Keep variations of project rather than focusing on one particular technology



Hash Map data structure is taken which works with the key-value pair.
Loop the string, character by character, and verify if that character of the string exists in the hash map or not.
If the result is true, the counter for the character in the hash map is increased or else then put a count as 1.
Once the loop ends, then the Hash map is traversed and print the characters with a count equal to 1.



a) Duplicate elements may be present.
b) If no such element is present return -1.
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.
Output: 6
Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.
Tip 1 : Must do coding questions from different online platforms.
OOPS concept, Database basic concepts, Computer Network simple question
There are 5 lanes on a race track. One needs to find out the 3 fastest horses among total of 25. Find out the minimum number of races to be conducted in order to determine the fastest three.
Tip 1 : Look at some common puzzle problems.
Tip 2 : Memorize them if have to
Interviewer mostly asked basic academic related question and then my resume was scanned and projects were asked from it. It was very friendly interview.
Asked to explain my project
Tip 1 : Go through projects you have added and have a story to tell about it, make it interesting

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