Upload Button Icon Add office photos

Filter interviews by

Demandbase Data Analyst Interview Questions and Answers

Updated 24 Apr 2024

Demandbase Data Analyst Interview Experiences

2 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 24 Apr 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SQL, excel, python and power Bi

Data Analyst Interview Questions & Answers

user image Syed Afraz Hussain

posted on 24 May 2023

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

I applied via Campus Placement and was interviewed before May 2022. 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 - Aptitude Test 

It was a hybrid type of test it consisted of 3 sections
1. Aptitude
2. 2 DSA questions only the algorithm was to be written on the paper
3. 5 SQL queries (Intermediate level)

Round 3 - One-on-one 

(2 Questions)

  • Q1. This was a one-to-one coding round medium-level dsa questions were asked.
  • Q2. Find the minimum element in a stack in O(1) complexity
  • Ans. 

    To find the minimum element in a stack in O(1) complexity, we can use an auxiliary stack.

    • Create an auxiliary stack to keep track of the minimum element.

    • Push the first element of the main stack onto the auxiliary stack.

    • For each subsequent element, compare it with the top element of the auxiliary stack.

    • If it is smaller, push it onto the auxiliary stack.

    • To get the minimum element, simply return the top element of the auxi...

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. In this round knowledge regarding SQL queries was tested.
  • Q2. Fetch data without using subqueries instead use joins type of questions
Round 5 - One-on-one 

(1 Question)

  • Q1. In this round real world problem was described and I was asked to develop a data analytics solution for the same.

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on DSA and SQL and you will get through it.

Skills evaluated in this interview

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
asked in Capgemini
Q4. Ninja and His Secret Information Encoding Problem Ninja, a new me ... read more
Q5. Sliding Window Maximum Problem Statement You are given an array/l ... read more

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Oct 2022. There were 4 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 

SQL and quant, logical questions were asked.

Round 3 - Technical 

(1 Question)

  • Q1. 1. Tell me about your self 2. Resume based questions 3. Need to write basic SQL queries and also print same output using pandas
Round 4 - Technical 

(1 Question)

  • Q1. 1. Tell me about your self 2. Statistics questions 3. Guestimates 4. Why do you want to join company

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a knowledge on your resume completely and prepare SQL and python libraries very well. Practice guestimates questions as well.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2022. There were 4 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 

It consist of questions related to aptitude, basic computer science, statistics.

Round 3 - Communication 

(1 Question)

  • Q1. Listen to audio and speak what is said.
Round 4 - One-on-one 

(2 Questions)

  • Q1. What is your strength and weakness.
  • Q2. What is join and it's types
  • Ans. 

    Join is a SQL operation used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both 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 ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MathCo Data Analyst interview:
  • SQL
  • Web Development
Interview preparation tips for other job seekers - It was quite easy. If you have good communication skills and confidence. You can clear easily.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed 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 - Coding Test 

Basic python questions

Round 3 - One-on-one 

(1 Question)

  • Q1. SQL question on joins and subqueries. Capstone project questions

Interview Preparation Tips

Interview preparation tips for other job seekers - have a good knowledge of your resume that you can explain to the interviewer.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

1 hour round of the apti round

Round 2 - Coding Test 

Basic SQL queries, and coding ques

Round 3 - Case Study 

Designing a system for advertising and optimize it

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

I applied via Campus Placement and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mid level Questions from Quants , regular aptitude , math questions and 1 business case study

Round 2 - Coding Test 

SQL (mid to advanced level ) like window functions , CTEs etc., and Python

Round 3 - Technical 

(5 Questions)

  • Q1. Mid to advanced level questions on technologies used in projects , use cases
  • Q2. What is Dense rank? , explain with use cases
  • Ans. 

    Dense rank is a ranking method that assigns consecutive integers to items with the same rank, leaving no gaps between ranks.

    • Dense rank is used when you want to assign unique ranks to items without any gaps.

    • For example, if three items have ranks 1, 2, and 2, dense rank would assign ranks 1, 2, and 2 respectively.

    • It is commonly used in scenarios where ties need to be handled by giving the same rank to tied items.

  • Answered by AI
  • Q3. Python web scraping
  • Q4. Business case studies
  • Q5. Applications of technologies in real word usecases
  • Ans. 

    Technologies are used in various real-world applications such as healthcare, finance, transportation, and marketing.

    • Healthcare: Technologies like AI and machine learning are used for diagnosing diseases, predicting patient outcomes, and personalized medicine.

    • Finance: Technologies such as blockchain are used for secure transactions and fraud detection.

    • Transportation: Technologies like GPS and IoT are used for route opti...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - knowledge with Advanced SQL is necessary to crack the interview

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round was aptitude, communication test and a pseudo code question and all are elimination rounds if you passes all the rounds you will get an interview date....

Round 2 - One-on-one 

(2 Questions)

  • Q1. Good Knowledge on dbms, sql
  • Q2. Python basic questions
Round 3 - HR 

(1 Question)

  • Q1. Very liberal questions about yourself, relocation, etc..

Interview Preparation Tips

Interview preparation tips for other job seekers - knowledge on sql, dbms, python , case studies, puzzles
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

Basic Scenario based questions

Round 2 - communication 

(1 Question)

  • Q1. Speak to speak< basic grammar corrections
  • Ans. 

    The question is about basic grammar corrections.

    • Always check for subject-verb agreement.

    • Ensure proper use of punctuation marks.

    • Review sentence structure for clarity and coherence.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Project based question, ML, basic code
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was nice and helpfull

Round 2 - Aptitude Test 

Logical, reasoning, apttude, communication

Round 3 - HR 

(2 Questions)

  • Q1. What are your strengths
  • Ans. 

    My strengths include strong analytical skills, attention to detail, and the ability to communicate complex data effectively.

    • Strong analytical skills - able to analyze data and draw meaningful insights

    • Attention to detail - meticulous in reviewing and verifying data for accuracy

    • Effective communication - able to present complex data in a clear and understandable manner

  • Answered by AI
  • Q2. What are your weaknesses
  • Ans. 

    One of my weaknesses is that I can be overly critical of my own work.

    • I tend to be a perfectionist and can spend too much time on a task to ensure it is flawless.

    • I sometimes struggle with delegating tasks to others because I want to make sure they are done correctly.

    • I am working on improving my ability to accept constructive criticism and not take it personally.

  • Answered by AI

Demandbase Interview FAQs

How many rounds are there in Demandbase Data Analyst interview?
Demandbase interview process usually has 3 rounds. The most common rounds in the Demandbase interview process are One-on-one Round, Resume Shortlist and Aptitude Test.
How to prepare for Demandbase 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 Demandbase. The most common topics and skills that interviewers at Demandbase expect are Data Analysis, Data Visualization, SQL, Data Quality and Python.
What are the top questions asked in Demandbase Data Analyst interview?

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

  1. Find the minimum element in a stack in O(1) complex...read more
  2. This was a one-to-one coding round medium-level dsa questions were ask...read more
  3. In this round real world problem was described and I was asked to develop a dat...read more

Tell us how to improve this page.

Demandbase Data Analyst Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
4.0
 • 208 Interviews
MathCo Interview Questions
2.9
 • 114 Interviews
Zeta Interview Questions
3.4
 • 70 Interviews
Subex Interview Questions
3.5
 • 35 Interviews
CoinDCX Interview Questions
3.7
 • 29 Interviews
Seclore Interview Questions
4.1
 • 26 Interviews
MoEngage Interview Questions
4.0
 • 26 Interviews
View all
Demandbase Data Analyst Salary
based on 12 salaries
₹7.9 L/yr - ₹20 L/yr
111% more than the average Data Analyst Salary in India
View more details

Demandbase Data Analyst Reviews and Ratings

based on 2 reviews

3.9/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

2.0

Salary

4.0

Job security

5.0

Company culture

2.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
18 salaries
unlock blur

₹14.5 L/yr - ₹29 L/yr

Research Analyst
15 salaries
unlock blur

₹10 L/yr - ₹15 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹30 L/yr - ₹45.2 L/yr

Data Analyst
12 salaries
unlock blur

₹7.9 L/yr - ₹20 L/yr

Software Developer
11 salaries
unlock blur

₹9 L/yr - ₹25.5 L/yr

Explore more salaries
Compare Demandbase with

Fractal Analytics

4.0
Compare

Subex

3.5
Compare

MathCo

2.9
Compare

Innovatiview India Ltd

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