Upload Button Icon Add office photos

Filter interviews by

Saras Analytics Interview Questions and Answers

Updated 2 Jul 2025
Popular Designations

8 Interview questions

A Data Scientist was asked 8mo ago
Q. What are the assumptions of linear regression?
Ans. 

Assumptions of linear regression include linearity, independence, homoscedasticity, and normality.

  • Linearity: The relationship between the independent and dependent variables is linear.

  • Independence: The residuals are independent of each other.

  • Homoscedasticity: The variance of the residuals is constant across all levels of the independent variables.

  • Normality: The residuals are normally distributed.

View all Data Scientist interview questions
A Senior Business Analyst was asked
Q. Guesstimate: How many balloons can fit inside an airplane?
Ans. 

The number of balloons that can fill an airplane depends on the size of the airplane and the size of the balloons.

  • The size of the airplane (e.g. small private plane vs. commercial airliner) will greatly impact the number of balloons that can fit.

  • The size of the balloons (e.g. standard party balloons vs. large weather balloons) will also affect the total number that can be accommodated.

  • Consider the available space ...

View all Senior Business Analyst interview questions
A Senior Business Analyst was asked
Q. SQL: What is the difference between UNION and UNION ALL?
Ans. 

UNION combines and removes duplicates, UNION ALL combines without removing duplicates

  • UNION merges the result sets of two or more SELECT statements and removes duplicates

  • UNION ALL merges the result sets of two or more SELECT statements 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 colum...

View all Senior Business Analyst interview questions
A Data Analyst was asked
Q. What is the difference between the WHERE and HAVING clauses?
Ans. 

The difference between WHERE and HAVING clauses in SQL.

  • WHERE clause is used to filter rows based on a condition before the data is grouped or aggregated.

  • HAVING clause is used to filter groups based on a condition after the data is grouped or aggregated.

  • WHERE clause is used with SELECT, UPDATE, DELETE statements, while HAVING clause is used with SELECT statements that include GROUP BY clause.

  • WHERE clause filters in...

View all Data Analyst interview questions
A Data Analyst was asked
Q. What is the difference between the Rank and Dense Rank functions?
Ans. 

Rank function assigns unique rank to each distinct row, while Dense rank function assigns same rank to rows with same values.

  • Rank function is used to assign a unique rank to each distinct row based on the order specified in the ORDER BY clause.

  • Dense rank function is used to assign the same rank to rows with the same values, skipping the next rank if there are ties.

  • Rank function returns consecutive ranks, while den...

View all Data Analyst interview questions
A Data Analyst was asked
Q. What is the difference between the HAVING and WHERE clauses?
Ans. 

HAVING clause is used with GROUP BY to filter the results based on aggregate functions, while WHERE clause is used to filter individual rows.

  • HAVING clause is used after GROUP BY clause.

  • HAVING clause is used to filter the results based on aggregate functions like SUM, COUNT, AVG, etc.

  • WHERE clause is used before GROUP BY clause.

  • WHERE clause is used to filter individual rows based on conditions.

  • HAVING clause cannot b...

View all Data Analyst interview questions
A Data Analyst was asked
Q. What is LOD in Tableau?
Ans. 

LOD stands for Level of Detail. It is a technique used in Tableau to perform complex calculations on aggregated data.

  • LOD expressions allow users to compute values at different levels of detail in a visualization

  • They can be used to create custom aggregations, filters, and calculations

  • There are three types of LOD expressions: FIXED, INCLUDE, and EXCLUDE

  • FIXED LOD expressions define a level of detail that is independe...

View all Data Analyst interview questions
Are these interview questions helpful?
A Senior Business Analyst was asked
Q. SQL: What is the difference between HAVING and WHERE? Can WHERE be replaced with HAVING?
Ans. 

HAVING is used with GROUP BY to filter grouped rows, WHERE is used to filter individual rows. WHERE cannot be replaced with HAVING.

  • WHERE is used to filter individual rows before grouping, HAVING is used to filter grouped rows after grouping

  • HAVING is used in conjunction with GROUP BY clause, WHERE is used independently

  • WHERE filters rows based on conditions, HAVING filters groups based on conditions

  • Example: SELECT d...

View all Senior Business Analyst interview questions

Saras Analytics Interview Experiences

14 interviews found

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPs, Linear vs Non Linear DS, DS definitions, JAVA, Puzzles.
Round 2 - Technical 

(1 Question)

  • Q1. Case study question regarding e-commerce. DSA question: Find pairs of given sum and triplets of given sum in an optimised way.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with DS and Algo, else get failed in the interview.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. SQL: What is the difference between UNION and UNION ALL?
  • Ans. 

    UNION combines and removes duplicates, UNION ALL combines without removing duplicates

    • UNION merges the result sets of two or more SELECT statements and removes duplicates

    • UNION ALL merges the result sets of two or more SELECT statements 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 FR...

  • Answered by AI
  • Q2. SQL: What is the difference between HAVING and WHERE? Can WHERE be replaced with HAVING?
  • Ans. 

    HAVING is used with GROUP BY to filter grouped rows, WHERE is used to filter individual rows. WHERE cannot be replaced with HAVING.

    • WHERE is used to filter individual rows before grouping, HAVING is used to filter grouped rows after grouping

    • HAVING is used in conjunction with GROUP BY clause, WHERE is used independently

    • WHERE filters rows based on conditions, HAVING filters groups based on conditions

    • Example: SELECT depart...

  • Answered by AI
  • Q3. Aptitude: There are 2 jugs: one measures 7L and another measures 11L. How do you measure 15L?
  • Q4. Guesstimate: How many ballons can fill in an aeroplane?
  • Ans. 

    The number of balloons that can fill an airplane depends on the size of the airplane and the size of the balloons.

    • The size of the airplane (e.g. small private plane vs. commercial airliner) will greatly impact the number of balloons that can fit.

    • The size of the balloons (e.g. standard party balloons vs. large weather balloons) will also affect the total number that can be accommodated.

    • Consider the available space insid...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for SQL, Power BI, Tableau, Guesstimate, Aptitude, eCommerce domain knowledge.

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 30 Jan 2024

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

I applied via LinkedIn and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Puzzle 2. Self join question
Round 2 - Technical 

(1 Question)

  • Q1. Where and having clause difference
  • Ans. 

    The difference between WHERE and HAVING clauses in SQL.

    • WHERE clause is used to filter rows based on a condition before the data is grouped or aggregated.

    • HAVING clause is used to filter groups based on a condition after the data is grouped or aggregated.

    • WHERE clause is used with SELECT, UPDATE, DELETE statements, while HAVING clause is used with SELECT statements that include GROUP BY clause.

    • WHERE clause filters individ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

The position is for SBA but they expect you to be as good as developer in coding. They want someone as good as developer but they don't call him/her as developer and give the designation as BA which I did not like. No questions regarding BA or PM or any Agile or waterfall methodologies 3 rounds every thing about coding (SQL, Python, ) and tools like Alteryx, AWS glue

Interview Preparation Tips

Interview preparation tips for other job seekers - If your applying please make sure your coding skills are as good as a developer irrespective of the role your applying for.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Happen to meet changes

Round 2 - HR 

(2 Questions)

  • Q1. Hike percentage?
  • Q2. Like and dislike

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 22 Feb 2025

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

I appeared for an interview before Feb 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. All kinda SQL questions, covering basic to advanced.
Round 2 - One-on-one 

(1 Question)

  • Q1. It was with director who tries to understand your analytical thoughts
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. Knowledge on analytics
  • Q2. Certifications on analytical tools
  • Q3. Knowledge on their products
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Decision tree criteria

Round 2 - One-on-one 

(2 Questions)

  • Q1. Decision Tree Criteria
  • Q2. Assumptions of linear regression
  • Ans. 

    Assumptions of linear regression include linearity, independence, homoscedasticity, and normality.

    • Linearity: The relationship between the independent and dependent variables is linear.

    • Independence: The residuals are independent of each other.

    • Homoscedasticity: The variance of the residuals is constant across all levels of the independent variables.

    • Normality: The residuals are normally distributed.

  • 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 appeared for an interview before Jul 2022.

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 

Test is simple. Make sure You make atleast 70% correct answers

Round 3 - Technical 

(1 Question)

  • Q1. Based on Data structures
Round 4 - Technical 

(1 Question)

  • Q1. Somewhat DSA and system design
Round 5 - One-on-one 

(1 Question)

  • Q1. About how you deal with work and pressure as a person.

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 14 Aug 2022

I applied via AngelList and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Coding Test 

There were two parts ,One is theoretical and another one is practical.
In theoretical round questions on SQL and ETL tools (MCQs).
In practical round, mystery puzzle was given, in which we have to solve the puzzle using SQL ( Different tables were given and few conditions were given)

Round 2 - Technical 

(5 Questions)

  • Q1. Difference between Having and where clause?
  • Q2. Some questions on online e commerce business
  • Q3. What is LOD in Tableau?
  • Ans. 

    LOD stands for Level of Detail. It is a technique used in Tableau to perform complex calculations on aggregated data.

    • LOD expressions allow users to compute values at different levels of detail in a visualization

    • They can be used to create custom aggregations, filters, and calculations

    • There are three types of LOD expressions: FIXED, INCLUDE, and EXCLUDE

    • FIXED LOD expressions define a level of detail that is independent of...

  • Answered by AI
  • Q4. Difference between Rank and Dense rank function?
  • Ans. 

    Rank function assigns unique rank to each distinct row, while Dense rank function assigns same rank to rows with same values.

    • Rank function is used to assign a unique rank to each distinct row based on the order specified in the ORDER BY clause.

    • Dense rank function is used to assign the same rank to rows with the same values, skipping the next rank if there are ties.

    • Rank function returns consecutive ranks, while dense ra...

  • Answered by AI
  • Q5. Some questions on Excel
Round 3 - Aptitude Test 

2 questions on Aptitude test asked by Hiring manager and 1 SQL question

Interview Preparation Tips

Topics to prepare for Saras Analytics Data Analyst interview:
  • SQL
  • Aptitude
  • Basic Maths
  • Power Bi
  • Excel
  • Good problem solving skills
Interview preparation tips for other job seekers - If you can crack Mystery puzzle, you can crack other rounds easily

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Vinayak Patil

posted on 7 Feb 2024

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

I applied via AngelList and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

SQL test comprises of Warehouse Theoretical question and one SQL Murder Mystery Practical question.

Round 2 - Technical 

(1 Question)

  • Q1. Difference between Group by Where clause. LOD in Tableau Questions Regarding Projects.

Interview Preparation Tips

Topics to prepare for Saras Analytics Data Analyst interview:
  • SQL
  • Data Warehousing
  • Power Bi
  • Tableau
  • Excel
  • E commerce

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Saras Analytics?
Ask anonymously on communities.

Saras Analytics Interview FAQs

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

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

  1. Difference between Having and where clau...read more
  2. Difference between Rank and Dense rank functi...read more
  3. SQL: What is the difference between HAVING and WHERE? Can WHERE be replaced wit...read more
How long is the Saras Analytics interview process?

The duration of Saras 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

4.1/5

based on 11 interview experiences

Difficulty level

Easy 11%
Moderate 67%
Hard 22%

Duration

Less than 2 weeks 56%
2-4 weeks 33%
4-6 weeks 11%
View more

Interview Questions from Similar Companies

S&P Global Interview Questions
4.0
 • 297 Interviews
IKS Health Interview Questions
3.6
 • 242 Interviews
Mu Sigma Interview Questions
2.6
 • 240 Interviews
Access Healthcare Interview Questions
3.9
 • 232 Interviews
Straive Interview Questions
3.4
 • 203 Interviews
Crisil Interview Questions
3.6
 • 202 Interviews
AGS Health Interview Questions
4.0
 • 187 Interviews
Indegene Interview Questions
3.4
 • 159 Interviews
View all

Saras Analytics Reviews and Ratings

based on 41 reviews

2.9/5

Rating in categories

3.0

Skill development

2.9

Work-life balance

3.3

Salary

2.5

Job security

2.8

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 41 Reviews and Ratings
Practice Head

Hyderabad / Secunderabad

10-15 Yrs

Not Disclosed

Acquisition Marketing Lead

Hyderabad / Secunderabad

3-8 Yrs

Not Disclosed

Growth Analyst

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Explore more jobs
Business Analyst
50 salaries
unlock blur

₹8.9 L/yr - ₹15 L/yr

Senior Business Analyst
15 salaries
unlock blur

₹13 L/yr - ₹25 L/yr

Data Analyst
12 salaries
unlock blur

₹4.6 L/yr - ₹13 L/yr

Junior Business Analyst
9 salaries
unlock blur

₹5 L/yr - ₹8.3 L/yr

Data Engineer
8 salaries
unlock blur

₹10.1 L/yr - ₹18.8 L/yr

Explore more salaries
Compare Saras Analytics with

Access Healthcare

3.9
Compare

S&P Global

4.0
Compare

IKS Health

3.6
Compare

AGS Health

4.0
Compare
write
Share an Interview