Tip 1 : Practice as many DSA questions as possible.
Tip 2 : Focus on Core Subjects like OS, CN, DBMS as Well.
Tip 3 : Do some projects to have a good grasp on development also.
Tip 1 : Make a 1-page Resume.
Tip 2 : Keep it short and crisp, include only relevant experiences and skills.
It was an online round taken through hackerrank. There were two coding questions of Easy level, Technical and Aptitude MCQs, that we had to solve.
For the given 5 intervals - [1, 4], [3, 5], [6, 8], [10, 12], [8, 9].
Since intervals [1, 4] and [3, 5] overlap with each other, we will merge them into a single interval as [1, 5].
Similarly, [6, 8] and [8, 9] overlap, merge them into [6,9].
Interval [10, 12] does not overlap with any interval.
Final List after merging overlapping intervals: [1, 5], [6, 9], [10, 12].
A string ‘B’ is a substring of a string ‘A’ if ‘B’ that can be obtained by deletion of, several characters(possibly none) from the start of ‘A’ and several characters(possibly none) from the end of ‘A’.
Two strings ‘X’ and ‘Y’ are considered different if there is at least one index ‘i’ such that the character of ‘X’ at index ‘i’ is different from the character of ‘Y’ at index ‘i’(X[i]!=Y[i]).
It was a mix of Technical and Behavioural round.
From any of your past experiences/projects, what was your learning, and how you overcame all the difficulties came across?
Tell something that you have to learn from your recent mistake.
It was a 24-Hour Hackathon. There were around 80 teams with around 6-8 candidates in one team and are divided into two further groups of 40 teams in each group. Each team was assigned two mentors who monitor and evaluate each candidate throughout the hackathon and help them in the best possible way. Subject Matter Experts are present who assist in solving technical issues during the hackathon.
There were around 10-11 NGOs who presented their problem statements and each team had to rank them in the order that they wished to work upon. My Team's Problem statement was to build a dashboard and analyzing tool for the availability of proteins around the world. We completed it by building a website using MERN Stack and using Python for analysis.
Final HR round for checking Compatibility with the Company.
Willing to relocate?
How many hours you can work?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is inheritance in C++?