Tip 1 : Practice D.S.A
Tip 2 : Prepare your projects
Tip 3 : Be confident
Tip 1 : Have some projects on your resume.
Tip 2 : Do not put false things on a resume.
0011 , 1100 , 101010 etc are beautiful strings whereas 1110, 0001,10101 etc are not beautiful strings.
Let the given string be “101001”
We will return 3 as we can divide the string into 3 beautiful strings “10” “10” and “01’.
.
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] overlaps, we 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]
.
It was a video interview in which 2 questions were asked u have 2 chances for each question to record your video. It was conducted on hirepro website.
Q1 - Describe a mistake that you did in a project and what did you learn from it
Q2 - Explain a situation when you went above and beyond in a project
The interviewer asked me to explain my project, 2 situation based questions and asked to solve a question on Trees
If the input tree is as depicted in the picture:
The Left View of the tree will be: 2 35 2
Only asked me about my projects on M.L and asked me to explain the algo. which I used in my project which was KNN.
Why do you want to join this company?
Where do you see yourself after 5years?
Are you ready to relocate?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?