Upload Button Icon Add office photos

MapmyIndia

Compare button icon Compare button icon Compare

Filter interviews by

MapmyIndia Product Intern Interview Questions and Answers

Updated 23 Jul 2024

MapmyIndia Product Intern Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. My prev experience with API's
  • Ans. 

    I have experience working with various APIs in previous projects.

    • Integrated Google Maps API for location services in a mobile app

    • Utilized Twitter API for social media data analysis

    • Implemented Stripe API for payment processing in an e-commerce website

  • Answered by AI
  • Q2. What was my fav product

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about MapmyIndia?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Easy question, maximum question on average, ages, pie chart,flow chart of coding, English comprehension, situation based question.

Interview Preparation Tips

Topics to prepare for Oracle Consultant interview:
  • Puzzle
  • Guesstimate
Interview preparation tips for other job seekers - Well Prepare for aptitude round since it is 1 round of elimination.

Product Intern Interview Questions Asked at Other Companies

asked in Adobe
Q1. Power Calculation Problem Statement Given a number x and an expon ... read more
asked in Adobe
Q2. Sort Array by Set Bit Count Given an array of positive integers, ... read more
asked in Adobe
Q3. Validate BST Problem Statement Given a binary tree with N nodes, ... read more
asked in Adobe
Q4. Maximum Non-Adjacent Subsequence Sum Given an array of integers, ... read more
asked in Adobe
Q5. Reverse Linked List Problem Statement Given a singly linked list ... read more

I appeared for an interview before Feb 2016.

Interview Questionnaire 

1 Question

  • Q1. 1>linked list node contain a string field and next.find if by concatenating all string fields the string formed is palindrome or not? 2-> merge to sorted array in which one arra is large enough to accomoda...
  • Ans. 

    The first question is about checking if a string formed by concatenating all string fields in a linked list is a palindrome or not.

    • Traverse the linked list and concatenate all string fields

    • Check if the concatenated string is a palindrome by comparing characters from both ends

    • Consider edge cases like empty linked list or single node with an empty string field

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Speed MAtters
Tips: Keep a good grade in collg.It really helps.
Duration: 1 hour 30 minutes

Round: Technical Interview
Experience: you will be asked to code and discuss solution in detail
Tips: Develop a sound knowledge of data structures and algorithms

College Name: Delhi Technological University (DCE)

Skills evaluated in this interview

I appeared for an interview in Mar 2017.

Interview Questionnaire 

3 Questions

  • Q1. Difference between process and thread
  • Ans. 

    Processes are independent execution units, while threads are lightweight, share resources within a process.

    • A process is an independent program in execution, while a thread is a smaller unit of a process.

    • Processes have their own memory space; threads share the same memory space of their parent process.

    • Example: A web browser (process) can have multiple tabs (threads) open simultaneously.

    • Processes are heavier and take mor...

  • Answered by AI
  • Q2. In a party there are n people, arrange them into two groups such that people in each group know each other. Also tell if no such arrangement exists.
  • Q3. New v/s malloc
  • Ans. 

    New is used in C++ for object creation, while malloc is a C function for memory allocation without constructor calls.

    • new allocates memory and calls constructors for objects, e.g., MyClass* obj = new MyClass();

    • malloc allocates raw memory without calling constructors, e.g., MyClass* obj = (MyClass*)malloc(sizeof(MyClass));

    • new returns a pointer of the appropriate type, while malloc returns a void pointer that needs castin...

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 7

College Name: BITS Pilani

Skills evaluated in this interview

I appeared for an interview in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. Questions related to Java Programming OOPS
  • Q2. Questions related to Internships

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes
Total Questions: 90

Round: Group Discussion
Duration: 25 minutes

Skills: Programming Skills In Any Language Like C, Object Oriented Programming (OOP) Basics, Data Structures And Algorithms, Operating Systems
College Name: NIT Raipur

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

It was an online round with coding questions, MCQs and a technical writing part

  • Q1. 

    Sort Array by Set Bit Count

    Given an array of positive integers, your task is to sort the array in decreasing order based on the count of set bits in the binary representation of each integer.

    If two num...

  • Ans. 

    Sort the array in decreasing order based on the count of set bits in the binary representation of each integer.

    • Iterate through the array and calculate the set bit count for each integer using bitwise operations.

    • Use a custom comparator function to sort the array based on the set bit count.

    • Maintain the original order for integers with the same set bit count.

    • Modify the array in-place within the given function.

  • Answered by AI
  • Q2. 

    Minimum Number of Lamps Needed

    Given a string S containing dots (.) and asterisks (*), where a dot represents free spaces and an asterisk represents lamps, determine the minimum number of additional lamps...

  • Ans. 

    Determine the minimum number of additional lamps needed to illuminate a string with dots and asterisks.

    • Iterate through the string and check for free spaces that are not already illuminated by existing lamps

    • Place a lamp at each free space that is not already illuminated by an existing lamp

    • Consider edge cases where the first and last positions may need additional lamps

  • Answered by AI
  • Q3. Technical Article

    A situation is given, we have to write a technical article of around 300-500 words (I dont remember exact word limit)

  • Ans. 

    How to optimize website performance for better user experience

    • Implementing lazy loading for images and videos

    • Minifying CSS and JavaScript files

    • Utilizing browser caching for static assets

    • Reducing server response time by optimizing code and database queries

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It was an online telephonic round, I was aksed to share my screen and to open my code editor. I generally code in VS Code, So I shared my VS code screen with the interviewer.
Timing - 4pm
Environment was good
Interviewer was nice person

  • Q1. 

    Validate BST Problem Statement

    Given a binary tree with N nodes, determine whether the tree is a Binary Search Tree (BST). If it is a BST, return true; otherwise, return false.

    A binary search tree (BST)...

  • Ans. 

    Validate if a binary tree is a Binary Search Tree (BST) based on given properties.

    • Check if left subtree contains only nodes with data less than current node's data

    • Check if right subtree contains only nodes with data greater than current node's data

    • Recursively check if both left and right subtrees are also BSTs

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the linked list.

    • Ensure to update the head of the reversed linked list at the end of the process.

    • Example: Input: 1 -> 2 -> 3 -...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. Eligibility criteria7 CGPAAdobe interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Dynamic Programming, Operating SystemsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on each data structure 
Tip 2 : Try to complete Interview Bit, practice previously asked questions and there are many videos on youtube which have made dsa sheets, just do all the important questions. Try to solve 500 questions in total to become fully prepared for coding rounds.
Tip 3 : Make a notebook for all the questions you do, note down the approach and code on a copy, it comes out to be very beneficial for revision.

Application resume tips for other job seekers

Tip 1 : Have some good projects in the resume.
Tip 2 : If you have done any internship, then it will be a plus point. If you don't have internships then you should have some good competitive programming ranks.

Final outcome of the interviewSelected

Skills evaluated in this interview

MapmyIndia HR Interview Questions

10 questions and answers

Q. Explain one of your projects.
Q. Tell me about your work experience.
Q. How do you measure success at work?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic Qs on Oops concepts, multithreading, Strings, Collection, Rest APIs, design pattern, Java new features, bit of senior based Qs, and Spring framework.
Round 3 - Technical 

(1 Question)

  • Q1. More detailed technical Qs on my tech stack and the tasks I have worked on.
Round 4 - Technical 

(1 Question)

  • Q1. Complete flow of an application built from scratch and scenario was given.
Round 5 - HR 

(1 Question)

  • Q1. Basic hr Qs, compensation discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best.
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basics of Corporate Banking and previously job experience and it's learning
Round 2 - One-on-one 

(1 Question)

  • Q1. Payments questions related to MT and MX.
Round 3 - HR 

(1 Question)

  • Q1. Role based questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. PostgreSQL dba related questions.
  • Q2. PostgreSQL Database Structure
  • Q3. Logical/ Physical streaming replication.
Round 3 - Technical 

(1 Question)

  • Q1. PostgreSQL DBA related questions.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is business contingency firm
  • Ans. 

    A business contingency firm is a company that helps organizations plan for and respond to unexpected events or crises.

    • Provides expertise in risk management and disaster recovery planning

    • Assists in developing strategies to minimize disruptions to business operations

    • Offers support in implementing emergency response protocols

    • Examples: Deloitte, PricewaterhouseCoopers, KPMG

  • Answered by AI

MapmyIndia Interview FAQs

How many rounds are there in MapmyIndia Product Intern interview?
MapmyIndia interview process usually has 1 rounds. The most common rounds in the MapmyIndia interview process are One-on-one Round.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

GIS Engineer
177 salaries
unlock blur

₹1.7 L/yr - ₹5 L/yr

GIS Executive
156 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Software Engineer
110 salaries
unlock blur

₹3.6 L/yr - ₹7.8 L/yr

Software Developer
105 salaries
unlock blur

₹3 L/yr - ₹8.2 L/yr

GIS Trainee
87 salaries
unlock blur

₹1.5 L/yr - ₹3.2 L/yr

Explore more salaries
Compare MapmyIndia with

TomTom

4.1
Compare

Oracle

3.6
Compare

KPIT Technologies

3.2
Compare

Intellect Design Arena

3.9
Compare
write
Share an Interview