Upload Button Icon Add office photos

Filter interviews by

Dailyhunt Senior Data Analyst Interview Questions and Answers

Updated 16 Nov 2023

Dailyhunt Senior Data Analyst Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed in Oct 2023. 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 - Technical 

(2 Questions)

  • Q1. SQL question using RANK(), CTE, SUM() and combination of aggregate functions
  • Q2. Define a metric that can tell the best performing genre on the platform
  • Ans. 

    One metric to determine the best performing genre on the platform is the average number of plays per song within each genre.

    • Calculate the average number of plays per song for each genre

    • Compare the averages to identify the genre with the highest average

    • Genres with higher average plays can be considered the best performing on the platform

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You should come up with the exact and correct query

I applied via Recruitment Consultant and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SQL Queries on joins

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL questions well

Senior Data Analyst Interview Questions Asked at Other Companies

Q1. What is the difference between Least Squares Method and the maxim ... read more
Q2. How do you improve the performance of Linear Regression
asked in Proftware
Q3. Imagine you are presented with a complex dataset from a multinati ... read more
Q4. How do you handle overfitting and underfitting in Decision Trees
Q5. What metrics do you use to evaluate classification models

Interview questions from similar companies

I applied via Walk-in and was interviewed before Feb 2021. 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 - Aptitude Test 
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - easy to crack they will ask qestions

Interview Questionnaire 

2 Questions

  • Q1. SQL and Excel were the key that helped me get this job.
  • Q2. Puzzles
Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2021. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. When I initially joined my job right after college there was a point where I was constantly
  • Q2. It's a great organisation and I've learner a lot here but it's such a small company that it's difficult to find ways to move up ask yourself what makes you feel passionate or happy when you work😊
  • Q3. Opportunity great time interest must
Round 2 - Group Discussion 

Group discussion can also provide feedback to instructors on participant comprehension.

Interview Preparation Tips

Interview preparation tips for other job seekers - Job search like it's your job look for opportunities

I applied via Naukri.com and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. The questions were around technical documentation and tasks were given on documentation
  • Q2. E commerce related questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - The managerial round was also core technical. If u do well in all the technical rounds you have high chance of clearing the interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 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 - Case Study 

1. Tell me about yourself
2. Estimate the number of hospitals in India

Round 3 - Case Study 

1. There has been a decrease in 20% of the users in the past 3 days in online pharmacy application, what will you do now?

Round 4 - HR 

(4 Questions)

  • Q1. Salary negotiation on what were last salary and related questions
  • Q2. How soon can you join?
  • Q3. Are you holding any other offer, in case you do..they will try to match it which ideally depends on your interview.
  • Q4. Are you comfortable relocating to the office location?

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview is fairly easy, just be confident and explain your thought process to the interviewer while answering any question. They will support you and help you reach the destination if you do so.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Introduction of yourself
Round 2 - Assignment 

Assignment of Google sheets

Round 3 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. What do you know about analysis and logical reasoning
  • Ans. 

    Analysis and logical reasoning involve examining data, identifying patterns, and drawing conclusions based on evidence.

    • Analysis involves breaking down complex information into smaller components for better understanding.

    • Logical reasoning is the process of using rational thinking to make sense of information and draw valid conclusions.

    • Analytical skills are essential for interpreting data accurately and making informed d...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hello guys this company provide good salary but not good appraisal
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Aug 2023.

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. SQL joins, case study
Round 3 - Case Study 

Case study guesstimates

Round 4 - Case Study 

Case study, guesstimates

Round 5 - HR 

(1 Question)

  • Q1. Just dirty politics to negotiate and to ruin your offer

Data Analyst Interview Questions & Answers

Impact Guru user image Shubham Upadhyay

posted on 19 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Difference between rank and dense rank
  • Ans. 

    Rank assigns unique ranks to each distinct value, while dense rank does not leave gaps between ranks.

    • Rank assigns unique ranks to each distinct value in a dataset

    • Dense rank does not leave gaps between ranks, assigning consecutive ranks to values with the same rank

    • For example, if values are 10, 20, 20, 30, then rank would be 1, 2, 2, 4 and dense rank would be 1, 2, 2, 3

  • Answered by AI
  • Q2. How will merge multiple file in python
  • Ans. 

    Merge multiple files in Python using pandas.concat() or pd.merge() functions.

    • Use pandas.concat() function to merge multiple files vertically (row-wise).

    • Use pd.merge() function to merge multiple files horizontally (column-wise) based on a common column.

    • Ensure that the files have compatible column names and data types before merging.

    • Handle any missing or duplicate values appropriately during the merging process.

    • Consider ...

  • Answered by AI
  • Q3. Data frame explain in detail
  • Ans. 

    A data frame is a two-dimensional data structure in which data is stored in rows and columns.

    • Data frames are commonly used in programming languages like R and Python for data analysis.

    • Each column in a data frame represents a variable, while each row represents an observation.

    • Data frames can contain different types of data, such as numeric, character, and factor.

    • Data frames can be created from various sources like CSV f

  • Answered by AI

Skills evaluated in this interview

Dailyhunt Interview FAQs

How many rounds are there in Dailyhunt Senior Data Analyst interview?
Dailyhunt interview process usually has 2 rounds. The most common rounds in the Dailyhunt interview process are Resume Shortlist and Technical.
What are the top questions asked in Dailyhunt Senior Data Analyst interview?

Some of the top questions asked at the Dailyhunt Senior Data Analyst interview -

  1. Define a metric that can tell the best performing genre on the platf...read more
  2. SQL question using RANK(), CTE, SUM() and combination of aggregate functi...read more
  3. SQL Queries on jo...read more

Tell us how to improve this page.

Dailyhunt Senior Data Analyst Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

MagicBricks Interview Questions
4.4
 • 292 Interviews
Tracxn Interview Questions
3.1
 • 102 Interviews
Zolo Interview Questions
3.4
 • 53 Interviews
GoMechanic Interview Questions
3.7
 • 52 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Carwale Interview Questions
3.5
 • 41 Interviews
Uplers Interview Questions
4.0
 • 41 Interviews
Impact Guru Interview Questions
3.7
 • 40 Interviews
Dream11 Interview Questions
3.8
 • 37 Interviews
99acres Interview Questions
3.9
 • 29 Interviews
View all
Dailyhunt Senior Data Analyst Salary
based on 7 salaries
₹18 L/yr - ₹23 L/yr
70% more than the average Senior Data Analyst Salary in India
View more details

Dailyhunt Senior Data Analyst Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

4.0

Salary

2.0

Job security

2.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
23 salaries
unlock blur

₹7.9 L/yr - ₹30 L/yr

Senior Software Engineer
23 salaries
unlock blur

₹10 L/yr - ₹32 L/yr

Associate
19 salaries
unlock blur

₹2.3 L/yr - ₹4.5 L/yr

Senior Associate
18 salaries
unlock blur

₹3.8 L/yr - ₹9 L/yr

Product Manager
11 salaries
unlock blur

₹22 L/yr - ₹31 L/yr

Explore more salaries
Compare Dailyhunt with

Inshorts

3.9
Compare

MagicBricks

4.4
Compare

Netmeds.com

3.6
Compare

Tracxn

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