Upload Button Icon Add office photos
Engaged Employer

i

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

MASAI School Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

MASAI School Data Analyst Interview Questions and Answers

Updated 4 Oct 2024

MASAI School Data Analyst Interview Experiences

2 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - One-on-one 

(5 Questions)

  • Q1. It is related to SQL, Python, and Excel
  • Q2. Not Remember the interview questions exactly
  • Q3. What is grouped by in SQL
  • Ans. 

    In SQL, data is grouped by a specified column or expression using the GROUP BY clause.

    • Data is grouped based on the values in the specified column or expression

    • Aggregate functions like SUM, COUNT, AVG can be used with GROUP BY to perform calculations on each group

    • GROUP BY is often used in conjunction with the SELECT statement

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department

  • Answered by AI
  • Q4. List and dictionary differences
  • Ans. 

    Lists are ordered collections of items, while dictionaries are unordered collections of key-value pairs.

    • Lists are accessed by index, dictionaries are accessed by key

    • Lists maintain the order of elements, dictionaries do not guarantee order

    • Lists use square brackets [], dictionaries use curly braces {}

    • Example: list - [1, 2, 3], dictionary - {'a': 1, 'b': 2}

  • Answered by AI
  • Q5. Lambda functions in python
  • Ans. 

    Lambda functions are anonymous functions in Python that can have any number of arguments but only one expression.

    • Lambda functions are defined using the lambda keyword.

    • They are commonly used for small, one-time tasks.

    • Lambda functions can take any number of arguments, but can only have one expression.

    • Example: add = lambda x, y: x + y

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - company is so good employees are very cooperative

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 4 Oct 2024

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

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

Round 1 - Coding Test 

Around sql/python and other da tools

Round 2 - Aptitude Test 

Stats and probability with focus on puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - do sql/python/puzzels/stats/probability

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

Interview questions from similar companies

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

A general apti round

Round 2 - Assignment 

Data analysis assignment

Round 3 - Technical 

(1 Question)

  • Q1. Sql questions askes
Round 4 - One-on-one 

(1 Question)

  • Q1. Product sense round
Round 5 - HR 

(1 Question)

  • Q1. Culture fit round
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SQL question difference between having and where
  • Ans. 

    HAVING is used with GROUP BY to filter groups, WHERE is used to filter rows

    • HAVING is used with GROUP BY to filter groups based on aggregate functions

    • WHERE is used to filter rows based on conditions

    • HAVING is applied after GROUP BY, WHERE is applied before GROUP BY

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 50000;

    • Example: SELECT * FROM employees WHERE department = 'S

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. How would you use your skill for sales

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is DAX and its use in power bi
  • Ans. 

    DAX (Data Analysis Expressions) is a formula language used in Power BI for data modeling and analysis.

    • DAX is used to create calculated columns and measures in Power BI.

    • It allows for advanced data analysis, such as time intelligence functions (e.g., YEAR, MONTH).

    • Example: A measure to calculate total sales could be defined as: Total Sales = SUM(Sales[Amount]).

    • DAX supports filtering and context manipulation, enabling dyna...

  • Answered by AI
  • Q2. Role of power query in power bi

I applied via Campus Placement 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 - Coding Test 

2 coding questions with aptitude question(logical aptitude and quantitative aptitude)

Round 3 - Coding Test 

This was a Machine Coding. We need to design a system and then they will check our design by running test cases. It was 2.5 hrs long.

Round 4 - One-on-one 

(2 Questions)

  • Q1. Basic questions on computer core subjects(Deadlock, Networking, Tcp connection, process scheduling etc, DNS Lookup etc)
  • Q2. Questions on React, Node and the libraries which I used in my project(My project was a full stack project)

Interview Preparation Tips

Topics to prepare for BrightCHAMPS Software Developer interview:
  • Computer Networking
  • Operating Systems
  • Database Management
  • React.Js
  • Data Structures
Interview preparation tips for other job seekers - Prepare your resume well and be prepared for project based questions. ( They will deep dive in that subject). Besides that have a basic understanding of core cs subjects and common dsa problems.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is OOPS concepts.
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q2. What is PDO and uses in PHP.
  • Ans. 

    PDO stands for PHP Data Objects, a database access layer providing a uniform method of access to multiple databases.

    • PDO is a PHP extension that provides a data-access abstraction layer.

    • It supports multiple database systems like MySQL, PostgreSQL, SQLite, etc.

    • PDO helps prevent SQL injection attacks by using prepared statements.

    • It allows for error handling and supports transactions.

    • Example: $pdo = new PDO('mysql:host=loc...

  • 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 applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find duplicates in an array
  • Ans. 

    Use a hash set to find duplicates in an array of strings.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if the element is already in the hash set.

    • If it is, then it is a duplicate. If not, add it to the hash set.

  • Answered by AI
  • Q2. Find single duplicate element in an array where contents of the array are length of array - 1
  • Ans. 

    Find the single duplicate element in an array of strings with length n-1.

    • Iterate through the array and use a HashSet to keep track of elements seen so far.

    • If an element is already in the HashSet, that is the duplicate element.

    • Return the duplicate element once found.

  • Answered by AI
Round 2 - Assignment 

Create a student support system

Round 3 - One-on-one 

(1 Question)

  • Q1. Design an order and payments system for an EdTech company
  • Ans. 

    Design an order and payments system for an EdTech company

    • Allow users to browse and select courses

    • Implement a shopping cart for users to add courses

    • Integrate payment gateways for secure transactions

    • Provide order confirmation and receipt to users

    • Allow users to track their order status

  • Answered by AI

Skills evaluated in this interview

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

Basic coding and MySQL queries. Like Types of join, having and where difference etc.

Round 2 - HR 

(1 Question)

  • Q1. Salary Discussion.

MASAI School Interview FAQs

How many rounds are there in MASAI School Data Analyst interview?
MASAI School interview process usually has 2 rounds. The most common rounds in the MASAI School interview process are Resume Shortlist, One-on-one Round and Coding Test.
How to prepare for MASAI School 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 MASAI School. The most common topics and skills that interviewers at MASAI School expect are Analytical, Data Analytics, Data Modeling, Data Visualization and Power Bi.
What are the top questions asked in MASAI School Data Analyst interview?

Some of the top questions asked at the MASAI School Data Analyst interview -

  1. what is grouped by in ...read more
  2. list and dictionary differen...read more
  3. Lambda functions in pyt...read more

Tell us how to improve this page.

MASAI School Data Analyst Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
MASAI School Data Analyst Salary
based on 18 salaries
₹4.2 L/yr - ₹8.5 L/yr
At par with the average Data Analyst Salary in India
View more details

MASAI School Data Analyst Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Operations Manager
40 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Full Stack Web Developer
29 salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Data Analyst
18 salaries
unlock blur

₹4.2 L/yr - ₹8.5 L/yr

Full Stack Developer
17 salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Software Engineer
16 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Explore more salaries
Compare MASAI School with

FastInfo

4.1
Compare

Testbook.com

3.5
Compare

Lido Learning

2.3
Compare

Acadecraft

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