Upload Button Icon Add office photos

Filter interviews by

Infiniti Research Analytics Consultant Interview Questions and Answers

Updated 9 Aug 2023

Infiniti Research Analytics Consultant Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in 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 - Technical 

(2 Questions)

  • Q1. Types of Joins in SQL
  • Ans. 

    Types of joins in SQL include inner join, left join, right join, and full outer join.

    • Inner join: Returns rows when there is a 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 table.

    • Full outer join: Returns rows when there is a match in either table.

  • Answered by AI
  • Q2. Questions regarding Data Modelling in power bi
Round 3 - Technical 

(2 Questions)

  • Q1. Explain about static and dynamic RLS
  • Ans. 

    Static RLS restricts access based on predefined rules, while dynamic RLS adjusts access based on user attributes or context.

    • Static RLS uses fixed rules to control access to data

    • Dynamic RLS adjusts access based on user attributes or context

    • Static RLS example: Only managers can view salary information

    • Dynamic RLS example: Employees can only access data for their own department

  • Answered by AI
  • Q2. Questions about power bi services part
Round 4 - HR 

(2 Questions)

  • Q1. It was about Salary discussions
  • Q2. And Joining formalities

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare on ur concepts and especially whatever u have used in ur resume u need to be aware of it

Skills evaluated in this interview

Interview questions from similar companies

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 with 40-50 questions

Round 3 - Group Discussion 

Easy was for 30 minutes. Team vs Individual

Round 4 - Technical 

(2 Questions)

  • Q1. About me , About Resume
  • Q2. Some SQL Questions and projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your basics well for the technical interview
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at National Institute of Technology (NIT), Warangal

Round 1 - Aptitude Test 

1 hour aptitude test

Round 2 - One-on-one 

(1 Question)

  • Q1. What is one hot encoding
Round 3 - HR 

(1 Question)

  • Q1. What is your long term goal
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basic aptitude question

Round 2 - Technical 

(1 Question)

  • Q1. Basic analysis and ML questions , more focused on approach instead of coding
Round 3 - HR 

(1 Question)

  • Q1. As like other HR rounds
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Regression, clustering

Interview Preparation Tips

Interview preparation tips for other job seekers - It was totally based on project
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Case Study 

Simple Data Science Case Study

Round 2 - Technical 

(1 Question)

  • Q1. Python knowledge related questions
Round 3 - Case Study 

Data Science Case Study

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

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Sql Based Questions on Join, CTE,Advance Functionc
  • Q2. Use case study implementation of logics
  • Ans. 

    Implementing logics in a use case study to analyze data and derive insights.

    • Identify the problem statement and objectives of the study

    • Collect relevant data and clean it for analysis

    • Apply statistical and machine learning techniques to derive insights

    • Interpret the results and communicate findings to stakeholders

  • Answered by AI
Round 2 - Coding Test 

Python, data manipluation, ML, SQl

Interview Preparation Tips

Topics to prepare for LatentView Analytics Senior Data Analyst interview:
  • SQL
  • Python
  • Machine Learning
Interview preparation tips for other job seekers - Practice coding

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Topics like sql, python, aptitude were covered.

Round 2 - Technical 

(1 Question)

  • Q1. Questions from stats, machine learning were asked. Behavioral questions were also covered.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience but they didnt give any response for my mails. I was worried about the results for 3 weeks and later they told me it was a rejection. When I asked them for reason , they dont have any it seems . Post interview it was horrible experience for me .
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Reverse a string in list
  • Ans. 

    Reverse a string in a list of strings

    • Iterate through each string in the list

    • Use the built-in function to reverse each string

    • Store the reversed strings in a new list

  • Answered by AI
  • Q2. Explain joins in sql
  • Ans. 

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

    • Joins are used to retrieve data from multiple tables based on a related column

    • Types of 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

Interview Preparation Tips

Interview preparation tips for other job seekers - great

Skills evaluated in this interview

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

The test is divided into 3 sections:
1. R coding.
2. Python coding. This section includes NumPy and scikit questions.
3. Statistics. This section includes T-tests, Anova regression distributions, and chi-square.
Each section has roughly 12 questions. The number of questions and difficulty is not set in advance, the test is adaptive. The more correct answers you give, the more the questions get tougher. The qualification does not depend upon the number of questions solved, rather on the difficulty level you can achive.

  • Q1. Complete the Code

    Complete the function to find the value in a specified categorical column with the highest average of a specified numeric column.

    import pandas as pddef category_avg(df, cat_column, num_col...

  • Ans. 

    The function finds the value in a specified categorical column with the highest average of a specified numeric column.

    • Use the groupby() function in pandas to group the data by the categorical column

    • Calculate the average of the numeric column for each group

    • Find the group with the highest average and return the corresponding value from the categorical column

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. Rotate matrix by 90 degrees

    You are given a square matrix of non-negative integers 'MATRIX'. Your task is to rotate that array by 90 degrees in an anti-clockwise direction using constant extra spac...

  • Ans. 

    The task is to rotate a square matrix by 90 degrees in an anti-clockwise direction using constant extra space.

    • Iterate through each layer of the matrix from outer to inner

    • For each layer, perform a four-way swap of elements

    • Continue this process until all layers have been rotated

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

  • Q1. Basic HR Questions

    How was your interview experience so far?
    Why do you want to join us?
    Are you a leader or a follower?

  • Ans. 

    Answering basic HR questions in a data science intern interview.

    • My interview experience so far has been positive and informative.

    • I want to join your company because of its reputation in the data science field and the opportunity to work on challenging projects.

    • I consider myself a leader as I have successfully led a team in a previous project.

    • I believe in taking initiative and guiding others towards achieving common goa...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Sharda University. Eligibility criteriaDegree in economics, mathematics, statistics, physics, or a related field. Final and Pre-Final Year eligible, Above 8 CGPAMcKinsey & Company interview preparation:Topics to prepare for the interview - Python, R, Statistics, Numpy, Pandas, Scikit-Learn, Regression, Clustering, Classification, Supervised & Unsupervised LearningTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Have in-depth knowledge of data-frame manipulation using Pandas
Tip 2 : Learn all NumPy array methods 
Tip 3 : Good working knowledge about Scikit Learn

Application resume tips for other job seekers

Tip 1 : Have 2-3 good projects on Machine Learning or Data Science preferably in Python.
Tip 2 : List only those skills which you are good at.

Final outcome of the interviewRejected

Skills evaluated in this interview

Infiniti Research Interview FAQs

How many rounds are there in Infiniti Research Analytics Consultant interview?
Infiniti Research interview process usually has 4 rounds. The most common rounds in the Infiniti Research interview process are Technical, Resume Shortlist and HR.
How to prepare for Infiniti Research Analytics Consultant 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 Infiniti Research. The most common topics and skills that interviewers at Infiniti Research expect are SQL, Machine Learning, Python, Tableau and Analytics.
What are the top questions asked in Infiniti Research Analytics Consultant interview?

Some of the top questions asked at the Infiniti Research Analytics Consultant interview -

  1. Explain about static and dynamic ...read more
  2. Types of Joins in ...read more
  3. Questions regarding Data Modelling in power...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Infiniti Research interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
PwC Interview Questions
3.4
 • 1.3k Interviews
Ernst & Young Interview Questions
3.5
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 777 Interviews
BCG Interview Questions
3.8
 • 192 Interviews
Chegg Interview Questions
4.2
 • 151 Interviews
Bain & Company Interview Questions
3.8
 • 101 Interviews
View all
Infiniti Research Analytics Consultant Salary
based on 36 salaries
₹5.1 L/yr - ₹21.1 L/yr
21% less than the average Analytics Consultant Salary in India
View more details

Infiniti Research Analytics Consultant Reviews and Ratings

based on 6 reviews

1.7/5

Rating in categories

1.7

Skill development

2.4

Work-Life balance

1.6

Salary & Benefits

1.7

Job Security

1.7

Company culture

1.6

Promotions/Appraisal

1.7

Work Satisfaction

Explore 6 Reviews and Ratings
Research Associate
198 salaries
unlock blur

₹2 L/yr - ₹6.2 L/yr

Senior Research Associate
111 salaries
unlock blur

₹3.5 L/yr - ₹8.6 L/yr

Research Analyst
100 salaries
unlock blur

₹3.2 L/yr - ₹9.7 L/yr

Software Engineer
59 salaries
unlock blur

₹3.5 L/yr - ₹10.5 L/yr

Analyst
55 salaries
unlock blur

₹4 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Infiniti Research with

Frost & Sullivan

3.1
Compare

McKinsey & Company

3.9
Compare

BCG

3.8
Compare

Gartner

4.2
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