Tip 1 : For Entry level software engineer role in Service based companies ,get prepared with the basic programming
Tip 2 : Brush up some OOPS and other basic interview questions
Tip 3 : Practice Every basis programming questions and have full understanding about the BASICS !!!
Tip 1 : Have at least two project in which u have complete knowledge
Tip 2 : Mention the skills and knowledges clearly visible with proper keywords
First round had MCQ and two programming Questions.
Its was conducted in Hank Earth platform.
MCQ were asked in Computer networks , OOPS, DBMS and other basics
and Programming question was From basic interview Questions.Common numbers in two arrays, palindrome function, etc



1. The points in the pair are distinct.
2. Euclidean distance and the Manhattan distance between the points of the pair should be equal.
1. Pair (‘P’, ‘Q’) is the same as pair (‘Q’, ‘P’).
2. Euclidean distance is given by: (( ‘X2’ - ‘X1’) ^ 2 + (‘Y2’ - ‘Y1’) ^ 2) ^ 0.5.
3. Manhattan distance is given by: |’X2’ - ‘X1’| + |’Y2’ - ‘Y1’|, where points are (‘X1’, ‘Y1’) and (‘X2’, ‘Y2’).
Let points be: (1, 2), (2, 3), (1, 3)
The Euclidean distance between points (1, 2) and (1, 3) is: 1
The Manhattan distance between points (1, 2) and (1, 3) is: 1
The Euclidean distance between points (2, 3) and (1, 3) is: 1
The Manhattan distance between points (2, 3) and (1, 3) is: 1
So the pairs can be: [(1, 2), (1, 3)] and [(2, 3), (1, 3)].
So the number of pairs is 2.
This round was HR Round in which they asked both technical questions and other common HR round questions
Tell me about yourself.
Why do you want this company?
How do you rate yourself from a scale of 1 to 10?
Tip 1 : General questions only asked so ,prepare the basics

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