Premium Employer

i

This company page is being actively managed by Tiger Analytics Team. If you also belong to the team, you can get access from here

Tiger Analytics Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Tiger Analytics Interview Questions and Answers

Updated 11 Jul 2025
Popular Designations

96 Interview questions

A Senior Analyst was asked 4mo ago
Q. How do you calculate the volume of the perpendicular intersection between two cylindrical objects of equal radius?
Ans. 

Calculate the volume of intersection between two equal-radius cylinders intersecting perpendicularly.

  • Identify the radius (r) of the cylinders.

  • Use the formula for the volume of intersection: V = 8/3 * r^3.

  • This formula applies when the cylinders are of equal radius and intersect at right angles.

  • Example: For r = 2, V = 8/3 * (2^3) = 8/3 * 8 = 64/3 ≈ 21.33 cubic units.

View all Senior Analyst interview questions
A Senior Analyst-MLE was asked 4mo ago
Q. Should missing values be imputed before or after splitting the data?
Ans. 

Imputation of missing values should be done after splitting to prevent data leakage.

  • Impute after splitting to maintain the integrity of the test set.

  • Example: If using mean imputation, calculate mean on training data only.

  • Pre-splitting imputation can lead to overfitting as the model sees test data.

  • Use techniques like KNN or regression for imputation post-split.

A Senior Analyst-MLE was asked 4mo ago
Q. What is the difference between a list and an array in Python?
Ans. 

Lists are flexible and can hold mixed data types; arrays are fixed-type and more efficient for numerical data.

  • Lists can contain elements of different data types: ['apple', 3, 4.5, True]

  • Arrays require elements to be of the same type: array('i', [1, 2, 3]) for integers.

  • Lists are part of Python's built-in data types, while arrays require importing the 'array' module.

  • Lists are more flexible and easier to use for gener...

A Data Analyst was asked 4mo ago
Q. Write SQL queries to solve the following problems.
Ans. 

SQL coding questions assess your ability to manipulate and query databases effectively.

  • Understand basic SQL commands: SELECT, INSERT, UPDATE, DELETE.

  • Practice JOIN operations: INNER JOIN, LEFT JOIN, RIGHT JOIN.

  • Learn to use aggregate functions: COUNT(), SUM(), AVG().

  • Familiarize yourself with WHERE clause for filtering data.

  • Explore GROUP BY and ORDER BY for organizing query results.

View all Data Analyst interview questions
An Associate was asked 5mo ago
Q. What is your analysis of the graphs?
Ans. 

The graphs show a steady increase in sales over the past year.

  • Sales have been consistently rising month over month.

  • There was a significant spike in sales during the holiday season.

  • The overall trend is positive and indicates growth in the business.

View all Associate interview questions
A Senior Analyst was asked 7mo ago
Q. Solve a Python problem using dictionaries.
Ans. 

This problem involves manipulating dictionaries in Python to achieve a specific goal.

  • Use dict methods like .get() to safely access values.

  • Example: my_dict.get('key', default_value) returns default_value if 'key' is not found.

  • Iterate through a dictionary using for loops: for key, value in my_dict.items():.

  • Example: for k, v in my_dict.items(): print(k, v) prints all key-value pairs.

  • Use dictionary comprehensions for ...

View all Senior Analyst interview questions

Tiger Analytics HR Interview Questions

11 questions and answers

Q. Introduce yourself.
Q. Tell me something about yourself.
Q. Why are you looking for a job change?
An Intern was asked 8mo ago
Q. Implement binary search on answer type problems.
Ans. 

Binary search on answer type is a technique to efficiently find a solution within a defined range by narrowing down possibilities.

  • Binary search operates on a sorted array or range of values.

  • It repeatedly divides the search interval in half, checking the middle element.

  • If the middle element is the target, the search is complete.

  • If the target is less than the middle element, search the left half; otherwise, search t...

View all Intern interview questions
Are these interview questions helpful?
A Data Engineer was asked 8mo ago
Q. Describe a scenario where you would use a SQL join.
Ans. 

SQL joins combine rows from two or more tables based on related columns, essential for data retrieval.

  • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

  • LEFT JOIN: Returns all records from the left table and matched records from the right. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

  • RIGHT JOIN: Returns all records from the right table and m...

View all Data Engineer interview questions
A Data Engineer was asked 8mo ago
Q. What are your expected and current CTC, and how do you approach salary negotiations?
Ans. 

Discussing expected and current salary for negotiation purposes.

  • Be honest about your current salary and provide a realistic expectation for your desired salary.

  • Highlight your skills and experience that justify your desired salary.

  • Be open to negotiation and willing to discuss other benefits besides salary.

  • Research industry standards and salary ranges for similar positions to support your negotiation.

  • Focus on the va...

View all Data Engineer interview questions
A Senior Modeller was asked 8mo ago
Q. Describe how you would design a data model.
Ans. 

Design a data model for a customer relationship management system

  • Identify entities such as customers, products, orders, and sales representatives

  • Establish relationships between entities (e.g. a customer can place multiple orders)

  • Define attributes for each entity (e.g. customer name, product price)

  • Consider normalization to reduce redundancy and improve data integrity

View all Senior Modeller interview questions

Tiger Analytics Interview Experiences

233 interviews found

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

1. Coding Test Conducted on Hackereath.
There were 10 MCQ each carrying 10 marks.
2 programming questions (40pts, 60pts)
Question were based on DP and Segment Tree.

Round 3 - Technical 

(4 Questions)

  • Q1. Q1. Implement python Collection Counter from Scratch.
  • Q2. Q2. Do Matrix Multiplication. Q3. Implement Factorial and Fibonacci Series with different Approaches.
  • Ans. 

    Matrix multiplication, factorial and Fibonacci series implementation

    • Matrix multiplication involves multiplying two matrices to get a third matrix

    • Factorial is the product of all positive integers up to a given number

    • Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones

    • Factorial can be implemented using recursion or iteration

    • Fibonacci series can be implemented using recursion or...

  • Answered by AI
  • Q3. Q4. What is the probability of getting 5 Sundays in 31 day month.
  • Ans. 3/7
  • Answered Anonymously
  • Q4. Q5. There were 100 coins. 99 Unbiased Coins, 1. Coin is biased. Derive the probability of getting 10 heads given the even of unbiased coins using Bayes Theorem.
Round 4 - Technical 

(4 Questions)

  • Q1. Q1. Implement a Program to check if a number is power of 3 .
  • Ans. Loop based Implementation, log based
  • Answered Anonymously
  • Q2. Q2. What will be the approach If all the features are categorical in Linear Regression. Q3. What is Dummy variable trap? If we don't remove dummy variable what will be the issue and does it impact performa...
  • Q3. Q4. You are standing in a field. Chances of seeing atleast 1 plane in 10 minutes is 15%. What is the probability of seeing atleast 1 plane in next 30 minutes?
  • Q4. Q5. If we select a random point in a circle of 1 unit radius what is the probability of appearing that point closer to the circumference , not closer to the centre.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for the conditional probability and statistics questions. They check on your logical reasoning and your python coding skills the most.

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 10 Jan 2025

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Two coding questions related to matrices and heaps.

Round 2 - Technical 

(1 Question)

  • Q1. Python and SQL coding
Round 3 - Technical 

(1 Question)

  • Q1. Same questions like tech 1
Round 4 - HR 

(2 Questions)

  • Q1. Self intro , why tiger
  • Q2. Relocation
  • Ans. 

    Relocation for a data analyst role involves considering job opportunities, personal circumstances, and potential benefits.

    • Evaluate job opportunities in the new location, such as tech hubs like San Francisco or New York.

    • Consider the cost of living differences; for example, moving from a small town to a major city may increase expenses.

    • Assess personal circumstances, such as family commitments or housing availability.

    • Rese...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Tiger Analytics Data Analyst interview:
  • Python
  • SQL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on gcp project
  • Q2. Sql and spark with airflow questions
Round 2 - Technical 

(1 Question)

  • Q1. Mostly like gcp services and managerial kind of questions

Data Engineer Interview Questions & Answers

user image Bhupendra Sonwane

posted on 23 Nov 2024

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

I appeared for an interview in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. SQL problem window function
  • Q2. SQL code like join and scenerio
  • Ans. 

    SQL joins combine rows from two or more tables based on related columns, essential for data retrieval.

    • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

    • LEFT JOIN: Returns all records from the left table and matched records from the right. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

    • RIGHT JOIN: Returns all records from the right table and matche...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Design round for adf pipeline
  • Ans. 

    Designing an ADF pipeline for data processing

    • Identify data sources and destinations

    • Define data transformations and processing steps

    • Consider scheduling and monitoring requirements

    • Utilize ADF activities like Copy Data, Data Flow, and Databricks

    • Implement error handling and logging mechanisms

  • Answered by AI
  • Q2. Azure synapses and adf adb
Round 3 - HR 

(2 Questions)

  • Q1. Expected ctc and current ctc negotiations
  • Ans. 

    Discussing expected and current salary for negotiation purposes.

    • Be honest about your current salary and provide a realistic expectation for your desired salary.

    • Highlight your skills and experience that justify your desired salary.

    • Be open to negotiation and willing to discuss other benefits besides salary.

    • Research industry standards and salary ranges for similar positions to support your negotiation.

    • Focus on the value y...

  • Answered by AI
  • Q2. Relocation and remote work until ofc open for Pune location
  • Ans. 

    I am open to relocation and remote work until the office in Pune reopens, ensuring flexibility and productivity.

    • Relocation shows commitment to the role and company.

    • Remote work allows for immediate contribution without geographical constraints.

    • I have experience working remotely, maintaining productivity through tools like Slack and Zoom.

    • Relocating to Pune would enable collaboration with the team once the office opens.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for sql and problem solving

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Project description
  • Ans. 

    Developed a data analysis project to optimize marketing strategies for a retail company.

    • Utilized customer segmentation techniques to identify target demographics

    • Analyzed sales data to determine the most effective marketing channels

    • Implemented A/B testing to measure the impact of different marketing campaigns

  • Answered by AI
  • Q2. Architecture diagram of project
  • Ans. 

    The architecture diagram of the project showcases the overall structure and components of the system.

    • The architecture diagram typically includes components like servers, databases, APIs, and client applications.

    • It shows how these components interact with each other and the flow of data within the system.

    • Commonly used tools for creating architecture diagrams include Microsoft Visio, Lucidchart, and draw.io.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. In depth machine learning questions
  • Q2. A python coding round
Round 3 - Technical 

(2 Questions)

  • Q1. In depth questions about python programming language
  • Q2. Discussed about company
Round 4 - HR 

(1 Question)

  • Q1. Salary expectations

Interview Preparation Tips

Topics to prepare for Tiger Analytics Senior Analyst interview:
  • Machine Learning
Interview preparation tips for other job seekers - Required In depth knowledge.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(5 Questions)

  • Q1. Previous Projects
  • Ans. 

    I have worked on various machine learning projects, including predictive modeling and natural language processing applications.

    • Developed a predictive model for customer churn using Python and scikit-learn, achieving an accuracy of over 85%.

    • Implemented a sentiment analysis tool for social media data using NLP techniques, which helped in understanding customer feedback.

    • Created a recommendation system for an e-commerce pl...

  • Answered by AI
  • Q2. Technical Knowhow
  • Q3. Questions related to Model Deployment
  • Q4. Questions related to model training and optimization
  • Q5. ZQuestions related to Azure
Round 2 - Coding Test 

Some questions related to the File Handling, NLP Pipeline, Model Deployments

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions on java , spring boot , containarisation tools, coding, SOLID principles
Round 2 - Assignment 

5 coading questions were asked in it

Round 3 - HR 

(1 Question)

  • Q1. Manegerial round
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a DevOps Engineer with 5 years of experience in automating, optimizing, and monitoring software development processes.

    • 5 years of experience in DevOps

    • Proficient in automating software development processes

    • Skilled in optimizing and monitoring systems

    • Strong knowledge of CI/CD pipelines

    • Experience with tools like Jenkins, Docker, Kubernetes

  • Answered by AI
  • Q2. Write a CI/CD Pipeline code for a 3 tier application
  • Ans. 

    A CI/CD Pipeline code for a 3 tier application

    • Use a version control system like Git to store the application code

    • Set up a CI tool like Jenkins to automate the build process

    • Define stages in the pipeline for building, testing, and deploying each tier of the application

    • Leverage tools like Docker for containerization and Kubernetes for orchestration

    • Implement automated testing at each stage to ensure code quality and reliab...

  • Answered by AI
  • Q3. Difference between NSG and ASG
  • Ans. 

    NSG stands for Network Security Group and is used to control inbound and outbound traffic to Azure resources. ASG stands for Availability Set Group and is used to ensure high availability of virtual machines.

    • NSG controls traffic by setting rules for inbound and outbound traffic based on source and destination IP addresses, ports, and protocols.

    • ASG groups virtual machines together to ensure high availability by distribu...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Tiger Analytics Devops Engineer interview:
  • CI/CD
  • Azure

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic ML questions based on your project, python basic questions
Round 2 - Coding Test 

Basic python questions on pandas,numpy, and basic SQL questions on windows function like lag

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

(5 Questions)

  • Q1. Selenium project realtime questions like handling Dynamic web elements
  • Ans. 

    Handling dynamic web elements in Selenium requires strategies like explicit waits and unique locators.

    • Use Explicit Waits: Implement WebDriverWait to wait for elements to become visible or clickable.

    • Example: WebDriverWait(driver, 10).until(ExpectedConditions.visibilityOfElementLocated(By.id('dynamicElement')));

    • Utilize Unique Locators: Identify elements using unique attributes like ID, class, or custom attributes.

    • Example...

  • Answered by AI
  • Q2. SQL query for joining
  • Ans. 

    SQL query for joining tables to retrieve data from multiple related tables.

    • Use JOIN keyword 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.

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

  • Answered by AI
  • Q3. Java program for oops concepts
  • Ans. 

    Java program showcasing OOPs concepts like inheritance, encapsulation, polymorphism, and abstraction.

    • Create classes representing different entities with properties and methods

    • Use inheritance to create a parent-child class relationship

    • Demonstrate encapsulation by setting private variables and using getter and setter methods

    • Show polymorphism by overriding methods in child classes

    • Implement abstraction by creating abstract...

  • Answered by AI
  • Q4. Writing Xpath for any page
  • Ans. 

    Xpath is a query language used to locate elements on a web page based on their attributes and structure.

    • Identify unique attributes of the element you want to locate

    • Use the '//' operator to search for elements anywhere in the document

    • Use the '[@attribute='value']' syntax to specify the attribute and value you are looking for

    • Combine multiple conditions using 'and' or 'or' operators

    • Use functions like 'contains()', 'starts...

  • Answered by AI
  • Q5. High level test scenarios

Skills evaluated in this interview

Data Scientist Interview Questions & Answers

user image vishay thakur

posted on 16 Nov 2024

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

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

Round 1 - Coding Test 

It was difficult and was on hackerrank

Round 2 - Technical 

(1 Question)

  • Q1. How to find a largest number in a list without using inbuilt function
  • Ans. 

    Iterate through the list and compare each element to find the largest number.

    • Iterate through the list using a loop

    • Compare each element with a variable storing the current largest number

    • Update the variable if a larger number is found

  • Answered by AI

Top trending discussions

View All
Interview Hub
6d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Tiger Analytics?
Ask anonymously on communities.

Tiger Analytics Interview FAQs

How many rounds are there in Tiger Analytics interview?
Tiger Analytics interview process usually has 2-3 rounds. The most common rounds in the Tiger Analytics interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Tiger Analytics 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 Tiger Analytics. The most common topics and skills that interviewers at Tiger Analytics expect are Python, SQL, Analytics, Data Science and Machine Learning.
What are the top questions asked in Tiger Analytics interview?

Some of the top questions asked at the Tiger Analytics interview -

  1. Q4. What is the probability of getting 5 Sundays in 31 day mon...read more
  2. Q4. You are standing in a field. Chances of seeing atleast 1 plane in 10 minute...read more
  3. How can you prove to the client that a students with higher classes are taller ...read more
What are the most common questions asked in Tiger Analytics HR round?

The most common HR questions asked in Tiger Analytics interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. Tell me about yourse...read more
How long is the Tiger Analytics interview process?

The duration of Tiger Analytics interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 195 interview experiences

Difficulty level

Easy 10%
Moderate 85%
Hard 5%

Duration

Less than 2 weeks 65%
2-4 weeks 30%
4-6 weeks 3%
6-8 weeks 1%
More than 8 weeks 1%
View more
Join Tiger Analytics Providing certainty to shape a better tomorrow

Interview Questions from Similar Companies

DXC Technology Interview Questions
3.6
 • 848 Interviews
Nagarro Interview Questions
3.9
 • 810 Interviews
NTT Data Interview Questions
3.8
 • 670 Interviews
Publicis Sapient Interview Questions
3.5
 • 651 Interviews
GlobalLogic Interview Questions
3.6
 • 639 Interviews
EPAM Systems Interview Questions
3.7
 • 579 Interviews
UST Interview Questions
3.8
 • 551 Interviews
CGI Group Interview Questions
4.0
 • 534 Interviews
View all

Tiger Analytics Reviews and Ratings

based on 829 reviews

3.7/5

Rating in categories

3.7

Skill development

3.6

Work-life balance

3.7

Salary

3.5

Job security

3.7

Company culture

3.3

Promotions

3.4

Work satisfaction

Explore 829 Reviews and Ratings
Data Architect Liaison

Gurgaon / Gurugram

12-20 Yrs

Not Disclosed

Senior Data Engineer- Data Modeling

Noida,

Gurgaon / Gurugram

+1

6-10 Yrs

₹ 14-35 LPA

Senior Data Engineer- Data Modeling

Hyderabad / Secunderabad,

Pune

+1

6-10 Yrs

₹ 14-35 LPA

Explore more jobs
Data Engineer
735 salaries
unlock blur

₹13.2 L/yr - ₹25 L/yr

Senior Analyst
610 salaries
unlock blur

₹10 L/yr - ₹17.1 L/yr

Data Scientist
595 salaries
unlock blur

₹12.5 L/yr - ₹23 L/yr

Senior Software Engineer
515 salaries
unlock blur

₹9.2 L/yr - ₹18 L/yr

Senior Data Engineer
267 salaries
unlock blur

₹22 L/yr - ₹37 L/yr

Explore more salaries
Compare Tiger Analytics with

DXC Technology

3.6
Compare

Optum Global Solutions

4.0
Compare

Virtusa Consulting Services

3.7
Compare

CGI Group

4.0
Compare
write
Share an Interview