Upload Button Icon Add office photos

Filter interviews by

Mapup Data Analyst Interview Questions and Answers

Updated 18 Jan 2025

Mapup Data Analyst Interview Experiences

5 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 23 Nov 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test based on Python and SQL

Round 2 - Assignment 

Assignment based on python and excel

Round 3 - Technical 

(4 Questions)

  • Q1. Based on excel assignment
  • Q2. Based on python assignment
  • Q3. Give numericaL SERIES
  • Ans. 

    Numerical series are sequences of numbers that follow a specific pattern or rule.

    • Arithmetic series: 2, 4, 6, 8, 10

    • Geometric series: 3, 6, 12, 24, 48

    • Fibonacci series: 0, 1, 1, 2, 3, 5, 8

  • Answered by AI
  • Q4. LOOK UPS IN EXCEL
  • Ans. 

    LOOKUPS IN EXCEL

    • LOOKUP function searches for a value in a range and returns a value in the same position in a different range

    • VLOOKUP function searches for a value in the first column of a table and returns a value in the same row from a specified column

    • HLOOKUP function searches for a value in the first row of a table and returns a value in the same column from a specified row

  • Answered by AI

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude, technical, SQL, coding

Round 2 - Assignment 

DSA, Python Pandas, Data Analysis

Round 3 - One-on-one 

(1 Question)

  • Q1. DSA, Python, SQL, Excel,

Data Analyst Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Suppose there is a room in the office and X people enter room thr ... read more
asked in Wipro
Q2. Chocolate Distribution Problem You are given an array/list CHOCOL ... read more
asked in Wipro
Q3. Ninja and Substrings Problem Statement Ninja has to determine all ... read more
Q4. Sliding Window Maximum Problem Statement You are given an array/l ... read more
asked in Tredence
Q5. Find First Repeated Character in a String Given a string 'STR' co ... read more

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

You will get assignment based in Python and Excel

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 3 Oct 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Assignment 

It was scraping task from website

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about coding knowledge related Python and Excel usage
  • Q2. Questions related to work ethics

Mapup interview questions for designations

 Junior Data Analyst

 (1)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 12 Feb 2022

I applied via LinkedIn and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

1st Round was MCQ type. Questions were from Aptitude, Logical Reasoning, Python, Excel & SQL.

Round 2 - Coding Test 

For round 2, tasks related to Excel & Python were given and total allowed time was 3 hours. Also, 1 web scraping task was given for which time allowed was 2 days.

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions were related to the tasks which were given. Like approach for solving those tasks or any other better way of doing it.

Interview Preparation Tips

Topics to prepare for Mapup Data Analyst interview:
  • Python
  • Excel
Interview preparation tips for other job seekers - Go through with everything you have done in your tasks. Questions will be around those.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Explain difference between joins
  • Q2. What is your area of intrest

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident , preparely nicely with sql
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Jodhpur and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It consists of resume-based skill questions.

Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to join ICICI Bank?
  • Ans. 

    I want to join ICICI Bank because of its strong reputation in the banking industry and the opportunities for growth and development it offers.

    • ICICI Bank is one of the leading banks in India with a strong reputation for innovation and customer service

    • I am impressed by ICICI Bank's focus on technology and digital banking solutions

    • I believe that working at ICICI Bank will provide me with opportunities for career growth an...

  • Answered by AI
  • Q2. Can you tell me about your projects?
  • Ans. 

    I have worked on projects involving data analysis for marketing campaigns, customer segmentation, and sales forecasting.

    • Developed predictive models to optimize marketing strategies

    • Utilized clustering techniques for customer segmentation

    • Built time series models for sales forecasting

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What are the different kinds of joins
  • Ans. 

    Different kinds of joins include inner join, outer join, left join, and right join.

    • Inner join: Returns only the rows that have matching values in both tables.

    • Outer join: Returns all rows when there is a match in one of the tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

  • Answered by AI
  • Q2. What is the difference between columns and measures in power BI
  • Ans. 

    Columns are the fields in a dataset, while measures are calculations based on those fields in Power BI.

    • Columns are the raw data fields in a dataset, such as 'Sales Amount' or 'Product Category'.

    • Measures are calculations performed on columns, like sum, average, count, etc.

    • Measures are created using DAX (Data Analysis Expressions) in Power BI.

    • Columns are used for grouping, filtering, and slicing data, while measures are

  • Answered by AI
  • Q3. How can you remove duplicates in sql
  • Ans. 

    Use the DISTINCT keyword in a SELECT statement to remove duplicates in SQL.

    • Use the DISTINCT keyword in a SELECT statement to retrieve unique values.

    • Example: SELECT DISTINCT column_name FROM table_name;

    • Another way is to use the GROUP BY clause to remove duplicates.

    • Example: SELECT column_name FROM table_name GROUP BY column_name;

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Data Analyst interview:
  • SQL Server
  • Power Bi
  • alteryx
Interview preparation tips for other job seekers - Be confident they want to know whether your basics are clear or not.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. All SQL Question
  • Q2. Related Join write query and Basic SQL
Round 2 - Coding Test 

Python Leetcode Question they ask

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Typing and speed

Interview Preparation Tips

Interview preparation tips for other job seekers - Gfd

Mapup Interview FAQs

How many rounds are there in Mapup Data Analyst interview?
Mapup interview process usually has 2-3 rounds. The most common rounds in the Mapup interview process are Assignment, Aptitude Test and Coding Test.
How to prepare for Mapup Data Analyst interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Mapup. The most common topics and skills that interviewers at Mapup expect are Big Data, Python, SQL, Data Processing and Excel.
What are the top questions asked in Mapup Data Analyst interview?

Some of the top questions asked at the Mapup Data Analyst interview -

  1. Give numericaL SER...read more
  2. lOOK UPS IN EX...read more
  3. Questions were related to the tasks which were given. Like approach for solving...read more

Tell us how to improve this page.

Mapup Data Analyst Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more

Data Analyst Interview Questions from Similar Companies

View all
Mapup Data Analyst Salary
based on 44 salaries
₹4 L/yr - ₹10.5 L/yr
At par with the average Data Analyst Salary in India
View more details

Mapup Data Analyst Reviews and Ratings

based on 11 reviews

2.6/5

Rating in categories

3.5

Skill development

2.5

Work-life balance

2.7

Salary

2.7

Job security

2.9

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 11 Reviews and Ratings
Data Analyst
44 salaries
unlock blur

₹4 L/yr - ₹10.5 L/yr

Software Development Engineer
5 salaries
unlock blur

₹3.6 L/yr - ₹14 L/yr

Front end Developer
5 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Software Developer
4 salaries
unlock blur

₹7.5 L/yr - ₹15 L/yr

Data Engineer
4 salaries
unlock blur

₹4 L/yr - ₹27 L/yr

Explore more salaries
Compare Mapup with

Zomato

3.8
Compare

Swiggy

3.8
Compare

Ola Cabs

3.4
Compare

Uber

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