Upload Button Icon Add office photos
Engaged Employer

i

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

Stanza Living Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Stanza Living Data Analyst Interview Questions and Answers

Updated 10 Aug 2023

Stanza Living Data Analyst Interview Experiences

3 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 16 Mar 2023

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

I applied via Job Portal and was interviewed in Feb 2023. There were 3 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 

There were 3 SQL questions
Q1. Find the second highest transaction I'd
Q2. Find the total transaction amount who signed up yesterday
Q3. How to calculate running sum without using window functions.
Excel question
Q1. How to get the data in pivot format without using pivot table option.

Round 3 - Aptitude Test 

I didn't clear my first round interview

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy. Just brush up your skills beforehand.
All the best!

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 10 Aug 2023

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

I applied via Referral and was interviewed before 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 - Coding Test 

Sql, excel questions were asked

Round 3 - Case Study 

To figure out the red colour car in delhi

Round 4 - HR 

(1 Question)

  • Q1. Hr questions were asked to me

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work, confused higher management and middle management are very scared of their bosses.

Data Analyst Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Suppose there is a room in the office and X people enter room thr ... read more
asked in Wipro
Q2. Chocolate Distribution Problem You are given an array/list CHOCOL ... read more
asked in Wipro
Q3. Ninja and Substrings Problem Statement Ninja has to determine all ... read more
asked in Capgemini
Q4. Ninja and His Secret Information Encoding Problem Ninja, a new me ... read more
Q5. Sliding Window Maximum Problem Statement You are given an array/l ... read more

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Dec 2022

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

I applied via IIM Jobs and was interviewed before Dec 2021. There were 3 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. SQL queries using group by and windows function.
  • Ans. 

    Group by and window functions are used in SQL queries to aggregate data and perform calculations on subsets of data.

    • Group by is used to group data based on one or more columns and perform aggregate functions on each group.

    • Window functions are used to perform calculations on a subset of data within a group, without affecting the grouping of the data.

    • Examples of aggregate functions include SUM, AVG, COUNT, MAX, and MIN.

    • E...

  • Answered by AI
  • Q2. Excel index match. Python loops and function
Round 3 - One-on-one 

(1 Question)

  • Q1. Business understanding, guesstimates etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice sql before the interview. You will be judged on that.

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. SQL and Excel were the key that helped me get this job.
  • Q2. Puzzles
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in May 2023. There were 3 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 - Assignment 

Send assignment doings MS Excel

Round 3 - Technical 

(2 Questions)

  • Q1. Asked about the previous project
  • Q2. What about your roles in previous company

Interview Preparation Tips

Topics to prepare for Zolo Data Analyst interview:
  • Excel
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed before Jun 2022. There were 2 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 - One-on-one 

(1 Question)

  • Q1. Previous company experience and current company roles and responsibilities
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. SQL related questions like joins
  • Q2. Types of join in sql
  • Ans. 

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

    • Inner join returns only the matching records from both tables.

    • Left join returns all records from the left table and the matching records from the right table.

    • Right join returns all records from the right table and the matching records from the left table.

    • Full outer join returns all records when there is a match in either the left or rig

  • Answered by AI
  • Q3. Practical use of left join
  • Ans. 

    A left join is used to combine data from two tables based on a common column, including all records from the left table.

    • Left join returns all rows from the left table and the matching rows from the right table.

    • It is useful when you want to retrieve all records from the left table, even if there are no matches in the right table.

    • The result of a left join will have NULL values in the columns from the right table where th...

  • Answered by AI
  • Q4. Number of rows after applying certain join operations
  • Ans. 

    The number of rows after applying join operations depends on the type of join used and the data in the tables being joined.

    • Inner join retains only the rows that have matching values in both tables

    • Left join retains all rows from the left table and the matched rows from the right table

    • Right join retains all rows from the right table and the matched rows from the left table

    • Full outer join retains all rows when there is a

  • Answered by AI
  • Q5. Difference between vlookup in excel and some function in sql
  • Ans. 

    VLOOKUP in Excel is used to search for a value in a table and return a corresponding value, while SQL functions like JOIN and WHERE are used to retrieve data from multiple tables based on specified conditions.

    • VLOOKUP is specific to Excel and works on a single table, while SQL functions can work on multiple tables.

    • VLOOKUP requires the table to be sorted in ascending order, while SQL functions do not have this requiremen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for SQL

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Simple SQL & Excel test

Round 2 - One-on-one 

(1 Question)

  • Q1. Will Face hiring Manager
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - Coding Test 

Test was based on SQL, coding and MCQ. Coding involved nested query.

Data Analyst Interview Questions & Answers

Meesho user image vinay kalikota

posted on 2 Sep 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There are 2 coding challenges and 7 objective questions

Round 2 - Technical 

(1 Question)

  • Q1. Technical questions related to role

Stanza Living Interview FAQs

How many rounds are there in Stanza Living Data Analyst interview?
Stanza Living interview process usually has 3-4 rounds. The most common rounds in the Stanza Living interview process are Resume Shortlist, Coding Test and Technical.
How to prepare for Stanza Living Data Analyst 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 Stanza Living. The most common topics and skills that interviewers at Stanza Living expect are SQL, Python, Advanced Excel, Analytics and Data Analytics.
What are the top questions asked in Stanza Living Data Analyst interview?

Some of the top questions asked at the Stanza Living Data Analyst interview -

  1. SQL queries using group by and windows functi...read more
  2. Excel index match. Python loops and funct...read more
  3. business understanding, guesstimates e...read more

Tell us how to improve this page.

Stanza Living Data Analyst Interview Process

based on 3 interviews

1 Interview rounds

  • Resume Shortlist Round
View more

Fast track your campus placements

View all
Stanza Living Data Analyst Salary
based on 37 salaries
₹4.8 L/yr - ₹13 L/yr
47% more than the average Data Analyst Salary in India
View more details

Stanza Living Data Analyst Reviews and Ratings

based on 4 reviews

2.3/5

Rating in categories

2.4

Skill development

1.3

Work-life balance

2.8

Salary

1.6

Job security

1.8

Company culture

2.2

Promotions

2.9

Work satisfaction

Explore 4 Reviews and Ratings
Property Manager
274 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Cluster Manager
172 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Resident Manager
104 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Associate
89 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
75 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Stanza Living with

Zolo

3.4
Compare

OYO Life

3.6
Compare

Nestaway

3.9
Compare

CoLive

2.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview