Upload Button Icon Add office photos
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

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Tiger Analytics Data Science Intern Interview Questions and Answers

Updated 29 Jun 2022

Tiger Analytics Data Science Intern Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

There are 20 Aptitude Question (time to solve these 20 question is 30 minutes). Then 10 MCQ Questions on Computer Science Fundamentals (time 10 minutes).

Round 2 - Coding Test 

There are 5 question based on DSA 3 question of 20 marks and 2 questions of 50 marks. You need to any two question of 20 marks questions and one of 50 marks question. Total time you get to solve these question is 60 minutes.

Round 3 - Technical 

(4 Questions)

  • Q1. Get Second highest element from an array (duplicates elements are allowed). Required T.C-->O(N) Single traversal. S.C--->O(1)
  • Ans. 

    Get second highest element from an array of strings with O(N) time complexity and O(1) space complexity.

    • Initialize two variables to store the highest and second highest elements.

    • Traverse the array and update the variables accordingly.

    • Return the second highest element.

    • Handle edge cases like empty array or array with only one element.

  • Answered by AI
  • Q2. Sort nearly sortes array.
  • Ans. 

    Sort nearly sorted array using min heap

    • Create a min heap of size k+1

    • Insert first k+1 elements into min heap

    • For remaining elements, extract min and insert new element

    • Extract all remaining elements from min heap

    • Time complexity: O(nlogk)

    • Example: ['apple', 'banana', 'cherry', 'date', 'elderberry']

  • Answered by AI
  • Q3. Coffiecent of x^7 in equation ? y=(x^101-1)(x^100+1)(x^99-1)...........................................(X^0+1)
  • Ans. 

    Coffiecent of x^7 in a given equation

    • Use the binomial theorem to expand the equation

    • Identify the term with x^7

    • The coefficient of x^7 is the coefficient of that term

  • Answered by AI
  • Q4. Some more probabilty and statistic questions exactly didn't remember.

Interview Preparation Tips

Topics to prepare for Tiger Analytics Data Science Intern interview:
  • Mathematics
  • Statistics
  • DSA
Interview preparation tips for other job seekers - Be confident.
Don't fake anything in your resume.
Think aloud.
Think twice code once.

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed in Mar 2017.

Interview Questionnaire 

1 Question

  • Q1. Views on their recruiting process
  • Ans. 

    I believe the recruiting process is thorough and well-organized.

    • The company uses a combination of resume screening, interviews, and assessments to evaluate candidates.

    • They have a clear timeline for the hiring process and keep candidates informed of their progress.

    • Feedback is provided to candidates after interviews to help them improve for future opportunities.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience:

Interview Preparation Tips

Round: Test
Experience: The questions were of medium to high difficulty. What set this test apart was the fact that each question had different weightage ranging from 0.5 to 3 marks per question. Time was a major factor. So my strategy was to attempt all the 1 and 1.5 marks questions which constitute the major chunk of the paper in around 40 minutes and spend the remaining 20 minutes for the 2 and 3 mark questions. I did not even bother reading the 0.5 mark questions. The 2 and 3 mark questions were difficult and those will differentiate you from others. 1600 students wrote the test and only 86 got shortlisted for the next round.
Duration: 60 minutes
Total Questions: 40

Round: Technical Interview
Experience: I was asked to write a C program to print the Fibonacci sequence and a basic SQL query. Apart from this I was asked a puzzle and other questions related to my resume. Out of the 86, only 26 students were called for the next round which again was a technical interview.

Round: Technical Interview
Experience: This was similar to the first technical interview. I had to write a C program to print the prime numbers between 1 and 100 and a puzzle was asked again. Apart from this a guesstimate to find the number of cars between 2 places was asked and a scenario based question too was asked. These were followed by resume related questions.

Round: HR Interview
Experience: All the 26 students who attended the second technical round were allowed to attend HR round as well. This was just for 4 - 5 minutes. I was asked about my family background and why I should be hired. My fondest memories from school days were asked too. Finally offer letter was given to 10 students out of the 1600 who wrote the test :P

General Tips: Just keep a calm head and attempt the questions. Ask for time to think if you are not able to answer the questions immediately. Be bold and confident. That is sufficient :)
Skills: Puzzle Solving Capability, Ability To Think, SQL, C Programming
College Name: VIT Vellore

I applied via Naukri.com and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Coding Test 

SQL test has been conducted nearer to 12-15 questions.

Round 3 - HR 

(2 Questions)

  • Q1. Normal discussion, about salary negotiation
  • Q2. Asked about my past company experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck.
They have lots of opportunities.....................
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. All basic concepts of pthon sql and ml
Round 2 - Coding Test 

Apptitude, tecncal, cognitiive

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 Nov 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Blood Relations, Pipes and Cisterns, Time and work etc.

Round 2 - Coding Test 

Question based on hashmap

Round 3 - Group Discussion 

Is Artificial Intelligence boon or ban.

Round 4 - Technical 

(2 Questions)

  • Q1. Python and SQL questions
  • Q2. Python and Numpy, Pandas

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from your resume.

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

Round 1 - Coding Test 

8 python coding
With 2 aptitude

Round 2 - Assignment 

Game based assessment.
More than 8 games need to play

Round 3 - One-on-one 

(2 Questions)

  • Q1. Questions from python and also from SQL. SQL is must to place LatentView. Some projects related questions
  • Q2. How many joins are in SQL what is lamda function in python Difference between tuples and list
  • Ans. 

    Answering questions related to SQL joins, lambda function in Python, and difference between tuples and lists.

    • There are four types of joins in SQL: inner join, left join, right join, and full outer join.

    • Lambda function is an anonymous function in Python that can take any number of arguments, but can only have one expression.

    • Tuples are immutable and ordered collections of elements, while lists are mutable and ordered col...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Want to start your career in analytics field learn SQL and python easily can get a chance to work.

Skills evaluated in this interview

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 Nov 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 Resume tips
Round 2 - Aptitude Test 

Get questions from all topics and medium level questions

Round 3 - Group Discussion 

They give one topic and provide one minute for thinking its overall 30 min discussion

Round 4 - Technical 

(2 Questions)

  • Q1. Total technical rounds 1)basic resume questions, python and sql questions. 2)same round 1 but a little bit extra dose 3) managerial round
  • Q2. List, tuple, oops concept. joins from sql
Round 5 - HR 

(1 Question)

  • Q1. Why latent view why analytics best achivemnts
  • Ans. 

    Latent view and analytics are essential for data-driven decision making. My best achievement is developing a predictive model for customer churn.

    • Latent view helps to uncover hidden patterns and insights in data that are not immediately apparent.

    • Analytics provides a systematic approach to analyzing data and extracting meaningful insights.

    • My best achievement is developing a predictive model for customer churn that helped

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go through your basics, no worries definitely every one get job
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Aptitude Test 

It was easy to approach!

Round 3 - Group Discussion 

Discussions about common topics like boon or bane to society

Round 4 - Case Study 

Asked about the scenarios

Round 5 - Technical 

(1 Question)

  • Q1. Technical round related to skills and resume
Round 6 - HR 

(1 Question)

  • Q1. Discussions regarding work culture and compensations
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 Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Difficult aptitude, had to solve a lot of problems in 2 hrs

Round 2 - Group Discussion 

GD topic was "online vs offline education "

Round 3 - Technical 

(2 Questions)

  • Q1. SQL question on self join
  • Q2. Guesstimate on number of cars sold in delhi
  • Ans. 

    Approximately 1.5-2 million cars are sold in Delhi annually.

    • Consider population of Delhi (approx. 20 million)

    • Assume car ownership rate (approx. 10%)

    • Factor in replacement rate and new buyers

  • Answered by AI
Contribute & help others!
anonymous
You can choose to be anonymous

Tiger Analytics Interview FAQs

How many rounds are there in Tiger Analytics Data Science Intern interview?
Tiger Analytics interview process usually has 3 rounds. The most common rounds in the Tiger Analytics interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Tiger Analytics Data Science Intern interview?

Some of the top questions asked at the Tiger Analytics Data Science Intern interview -

  1. Get Second highest element from an array (duplicates elements are allowed). Req...read more
  2. Coffiecent of x^7 in equation ? y=(x^101-1)(x^100+1)(x^99-1)......................read more
  3. Sort nearly sortes arr...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Macleods Pharmaceuticals

No Interviews

LIST OF COMPANIES

Bharat Oman Refineries

Locations

INTERVIEWS

Macleods Pharmaceuticals

No Interviews

JOBS

Macleods Pharmaceuticals

No Jobs

JOBS

Macleods Pharmaceuticals

No Jobs

Tell us how to improve this page.

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.4
 • 268 Interviews
Mu Sigma Interview Questions
2.6
 • 229 Interviews
Altimetrik Interview Questions
3.8
 • 214 Interviews
Fractal Analytics Interview Questions
4.0
 • 208 Interviews
Xoriant Interview Questions
4.1
 • 182 Interviews
Incedo Interview Questions
3.2
 • 181 Interviews
ThoughtWorks Interview Questions
3.9
 • 147 Interviews
Iris Software Interview Questions
4.0
 • 141 Interviews
View all
Tiger Analytics Data Science Intern Salary
based on 5 salaries
₹7 L/yr - ₹9 L/yr
150% more than the average Data Science Intern Salary in India
View more details

Tiger Analytics Data Science Intern Reviews and Ratings

based on 4 reviews

3.6/5

Rating in categories

3.7

Skill development

4.2

Work-life balance

3.7

Salary

2.9

Job security

3.4

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 4 Reviews and Ratings
Senior Analyst
524 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Scientist
487 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Engineer
471 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
379 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
237 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Tiger Analytics with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

LatentView Analytics

3.7
Compare

AbsolutData

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent