Upload Button Icon Add office photos

Filter interviews by

Think 360 Data Analyst Interview Questions and Answers

Updated 10 Jun 2024

Think 360 Data Analyst Interview Experiences

1 interview found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 10 Jun 2024

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

ML implementation and Aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. Guesstimate type questions
  • Q2. Power Bi and SQL basics
  • Q3. Puzzles and logical thinking
Round 3 - One-on-one 

(2 Questions)

  • Q1. Case Study on Uber cost estimation
  • Q2. Data modelling and scripting related questions

Interview questions from similar companies

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your projects
  • Q2. Tell me yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are SQL Joins?
  • Ans. 

    SQL Joins are used to combine rows from two or more tables based on a related column between them.

    • SQL Joins are used to retrieve data from multiple tables based on a related column between them.

    • Common types of SQL Joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q2. Different functions in Python numpy
  • Ans. 

    Python numpy provides various functions for numerical operations on arrays.

    • numpy.sum() - calculates the sum of array elements

    • numpy.mean() - calculates the mean of array elements

    • numpy.max() - returns the maximum value in an array

    • numpy.min() - returns the minimum value in an array

    • numpy.std() - calculates the standard deviation of array elements

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between union and union all in SQL?
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

    • Union combines result sets and removes duplicates

    • Union All combines result sets without removing duplicates

    • Union is slower than Union All as it involves removing duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • Answered by AI
  • Q2. How to show top 5 in pandas?
  • Ans. 

    To show top 5 in pandas, use the nlargest() function.

    • Use the nlargest() function with the 'n' parameter set to 5 to get the top 5 values in a pandas DataFrame.

    • For example: df['column_name'].nlargest(5) will return the top 5 values in the specified column.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. If we have 3 numerical columns, which chart is a better representation these column?
  • Ans. 

    A scatter plot is a better representation for 3 numerical columns.

    • Use a scatter plot to show the relationship between the numerical columns.

    • Scatter plots are effective for visualizing correlations and patterns in data.

    • Each point on the plot represents a data point with values from all 3 columns.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Omnicom Media Group Data Analyst interview:
  • SQL Server
  • Pandas
  • Power Bi

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your projects
  • Q2. Tell me yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are SQL Joins?
  • Ans. 

    SQL Joins are used to combine rows from two or more tables based on a related column between them.

    • SQL Joins are used to retrieve data from multiple tables based on a related column between them.

    • Common types of SQL Joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q2. Different functions in Python numpy
  • Ans. 

    Python numpy provides various functions for numerical operations on arrays.

    • numpy.sum() - calculates the sum of array elements

    • numpy.mean() - calculates the mean of array elements

    • numpy.max() - returns the maximum value in an array

    • numpy.min() - returns the minimum value in an array

    • numpy.std() - calculates the standard deviation of array elements

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between union and union all in SQL?
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

    • Union combines result sets and removes duplicates

    • Union All combines result sets without removing duplicates

    • Union is slower than Union All as it involves removing duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • Answered by AI
  • Q2. How to show top 5 in pandas?
  • Ans. 

    To show top 5 in pandas, use the nlargest() function.

    • Use the nlargest() function with the 'n' parameter set to 5 to get the top 5 values in a pandas DataFrame.

    • For example: df['column_name'].nlargest(5) will return the top 5 values in the specified column.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. If we have 3 numerical columns, which chart is a better representation these column?
  • Ans. 

    A scatter plot is a better representation for 3 numerical columns.

    • Use a scatter plot to show the relationship between the numerical columns.

    • Scatter plots are effective for visualizing correlations and patterns in data.

    • Each point on the plot represents a data point with values from all 3 columns.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Omnicom Media Group Data Analyst interview:
  • SQL Server
  • Pandas
  • Power Bi

Skills evaluated in this interview

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

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

Round 1 - HR 

(1 Question)

  • Q1. About myself & my work experience
Round 2 - Technical 

(1 Question)

  • Q1. SQL & Python related Qs

Think 360 Interview FAQs

How many rounds are there in Think 360 Data Analyst interview?
Think 360 interview process usually has 3 rounds. The most common rounds in the Think 360 interview process are Coding Test, Technical and One-on-one Round.
What are the top questions asked in Think 360 Data Analyst interview?

Some of the top questions asked at the Think 360 Data Analyst interview -

  1. Data modelling and scripting related questi...read more
  2. Case Study on Uber cost estimat...read more
  3. Guesstimate type questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Concentric Interview Questions
3.9
 • 34 Interviews
Cogent Interview Questions
3.2
 • 17 Interviews
IPG Mediabrands Interview Questions
3.7
 • 14 Interviews
Xapads Media Interview Questions
4.8
 • 10 Interviews
Havas Media Interview Questions
3.3
 • 9 Interviews
View all
Think 360 Data Analyst Salary
based on 14 salaries
₹8.5 L/yr - ₹10.4 L/yr
55% more than the average Data Analyst Salary in India
View more details

Think 360 Data Analyst Reviews and Ratings

based on 2 reviews

3.4/5

Rating in categories

4.0

Skill development

3.1

Work-Life balance

2.4

Salary & Benefits

3.0

Job Security

4.4

Company culture

3.4

Promotions/Appraisal

2.4

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Associate
22 salaries
unlock blur

₹9.8 L/yr - ₹18 L/yr

Data Analyst
14 salaries
unlock blur

₹8.5 L/yr - ₹10.4 L/yr

Associate
9 salaries
unlock blur

₹4.3 L/yr - ₹11 L/yr

Full Stack Developer
9 salaries
unlock blur

₹6.5 L/yr - ₹11.4 L/yr

Associate Data Analyst
8 salaries
unlock blur

₹8.3 L/yr - ₹9.9 L/yr

Explore more salaries
Compare Think 360 with

Wizcraft International Entertainment

4.2
Compare

Percept

3.2
Compare

Fountainhead

3.8
Compare

Cineyug

4.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview