Upload Button Icon Add office photos

Filter interviews by

MatchPoint gps Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Q-1 If linked list has cycle Q-2 Intersection point of two linked list Q-3 HashMap related Questions Q-4 Design related Q-5 Core Java Questions
  • Ans. 

    Interview questions for Software Engineer on linked list, HashMap, design and core Java

    • For Q-1, use Floyd's cycle detection algorithm

    • For Q-2, traverse both linked lists and find the common node

    • For Q-3, understand the basic operations of HashMap like put, get, and remove

    • For Q-4, focus on object-oriented design principles and patterns

    • For Q-5, brush up on concepts like multithreading, exception handling, and collections

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare data structures/Algorithms, Design questions and Core Java well

Interview Questionnaire 

4 Questions

  • Q1. Programming
  • Q2. Technical on your domain
  • Q3. Manager technical on your domain
  • Q4. HR

I applied via Campus Placement and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. How to find the middle of a linked list in one iteration.
  • Ans. 

    To find the middle of a linked list in one iteration, use two pointers with different speeds.

    • Initialize two pointers, one slow and one fast, both pointing to the head of the linked list.

    • Move the slow pointer one step at a time and the fast pointer two steps at a time.

    • When the fast pointer reaches the end of the linked list, the slow pointer will be at the middle node.

  • Answered by AI
  • Q2. All sorting you know and their complexities both time and space
  • Q3. Eagle eye view of binary tree
  • Ans. 

    A binary tree is a data structure consisting of nodes, where each node has at most two children.

    • Binary tree is used to represent hierarchical relationships between nodes

    • Traversal of binary tree can be done in three ways: inorder, preorder, postorder

    • Binary search tree is a type of binary tree where left child is smaller and right child is greater than parent

    • Balanced binary tree has height difference of at most 1 between...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise everything you learnt just before the intervsiew. Be clear on things you have put on your resume.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Types of data structure and their time complexities
  • Ans. 

    Data structures are used to organize and store data efficiently. Time complexity is the measure of efficiency.

    • Arrays - O(1) for access, O(n) for search and insertion

    • Linked Lists - O(n) for access, O(1) for insertion and deletion

    • Stacks - O(1) for access, insertion and deletion

    • Queues - O(1) for access, insertion and deletion

    • Trees - O(log n) for access, insertion and deletion

    • Hash Tables - O(1) for access, insertion and de

  • Answered by AI
  • Q2. Types of Binary Tree
  • Ans. 

    Binary trees are classified based on the number of children each node can have.

    • Full binary tree: every node has either 0 or 2 children

    • Complete binary tree: all levels except possibly the last are completely filled, and all nodes are as far left as possible

    • Perfect binary tree: all internal nodes have two children and all leaf nodes are at the same level

    • Balanced binary tree: the difference in height between the left and ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare time complexities of the data structure algorithms and be through with oops concept

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Assignment 

Just focus and data structures and algorithms

Round 2 - HR 

(1 Question)

  • Q1. What are your weaknesses

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to know http requests

Software Engineer Interview Questions & Answers

Trimble user image Saminathan Alagu Sundaram

posted on 25 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Based on DSA, OOPS
Round 2 - Technical 

(1 Question)

  • Q1. Based on Projects in Resume
Round 3 - Technical 

(1 Question)

  • Q1. Technical Discussion about earlier projects
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion

I applied via Company Website and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you measure success at work?
  • Ans. 

    Success at work is measured by achieving goals, delivering high-quality work, and receiving recognition.

    • Achieving goals set by the team or organization

    • Delivering high-quality work that meets or exceeds expectations

    • Receiving recognition from colleagues, managers, or clients

    • Meeting deadlines and completing tasks efficiently

    • Contributing to the overall success of the team or project

  • Answered by AI
  • Q2. How many programming languages do you know?
  • Ans. 

    I know multiple programming languages.

    • I am proficient in Java, Python, and C++.

    • I have experience with web development languages such as HTML, CSS, and JavaScript.

    • I am familiar with scripting languages like Bash and PowerShell.

    • I have worked with database query languages like SQL.

    • I have knowledge of mobile app development languages like Swift and Kotlin.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MapmyIndia Software Engineer interview:
  • Software
  • Software Engineering
  • Technical Skills
Interview preparation tips for other job seekers - Job search like it's your job
Know your and self what you want
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Assignment 

Scheduling Program, Build Scripts

Round 2 - Technical 

(1 Question)

  • Q1. System Design, Previous Projects
Round 3 - HR 

(1 Question)

  • Q1. Salary Decision, Car lease options

I applied via Referral and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Give me an example where you solved a problem and the steps you followed
  • Ans. 

    I solved a customer complaint by identifying the root cause and providing a solution

    • Listened to the customer's complaint and empathized with their situation

    • Analyzed the issue and identified the root cause

    • Developed a solution and presented it to the customer

    • Followed up with the customer to ensure their satisfaction

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for competency-based questions where you elaborate from your experience.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was like 5 MCQ and two coding questions with difficult level of moderate

Round 2 - Technical 

(2 Questions)

  • Q1. They asked questions from DSA,sql and some web technology which I mentioned in my resume
  • Q2. What is the life cycle of react components?
  • Ans. 

    React components go through various stages in their life cycle, from initialization to destruction.

    • Initialization: Component is created and initialized with default props and state.

    • Mounting: Component is rendered on the DOM for the first time.

    • Updating: Component re-renders when props or state change.

    • Unmounting: Component is removed from the DOM.

    • Examples: componentDidMount() for mounting, componentDidUpdate() for updati

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Asked about my project and some behavioural questions

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 849 Interviews
Google Interview Questions
4.4
 • 828 Interviews
Amdocs Interview Questions
3.7
 • 514 Interviews
Zoho Interview Questions
4.3
 • 507 Interviews
Trimble Interview Questions
4.2
 • 27 Interviews
MapmyIndia Interview Questions
3.7
 • 24 Interviews
TomTom Interview Questions
4.0
 • 13 Interviews
Garmin Interview Questions
3.1
 • 6 Interviews
View all

MatchPoint gps Reviews and Ratings

based on 33 reviews

4.4/5

Rating in categories

4.3

Skill development

4.0

Work-life balance

4.0

Salary

3.2

Job security

4.2

Company culture

3.5

Promotions

4.0

Work satisfaction

Explore 33 Reviews and Ratings
Relationship Manager
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Area Sales Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare MatchPoint gps with

MapmyIndia

3.7
Compare

Garmin

3.1
Compare

TomTom

4.0
Compare

Trimble

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview