Myntra Senior Business Analyst Questions

Myntra Senior Business Analyst Interview Questions

Myntra Senior Business Analyst Questions
The Analytics domain is a very rapidly developing domain and there is an ever-growing job opportunity in this domain. We will keep everything short and simple.
Myntra Senior Business Analyst Questions

Target job roles – Business Analyst, Data Analyst, Data Scientist, Business Intelligence Engineer, Product Analyst, Machine Learning Engineer, Data Engineer

Target Companies – FAANG and only product-based companies

CTC offered –
12 to 20 LPA for Level 1 (0 to 4 YOE)
20 to 35 LPA for Level 2 (Senior level – 4 to 7 YOE )
35 to 50 LPA for Level 3 (Team Lead or Manager – 7 to 9 YOE)
50 to 80 LPA for Level 4 (Manager or Senior Manager – 9 to 12 YOE)


Tools and Technologies required
SQL – 9/10
Python – 7/10
Visualization tool (Power BI or Tableau) – Good to have
Machine Learning Algorithm – Expert in at least a couple of algorithms (if going for Data Science role)

Why The Data Monk?

We are a group of 30+ people with ~8 years of Analytics experience in product-based companies. We take interviews on a daily basis for our organization and we very well know what is asked in the interviews.
Other skill enhancer website charge 2lakh+ GST for courses ranging from 10 to 15 months.

We only focus on making you a clear interview with ease. We have released our Become a Full Stack Analytics Professional for anyone in 2nd year of graduation to 8-10 YOE. This book contains 23 topics and each topic is divided into 50/100/200/250 questions and answers. Pick the book and read it thrice, learn it, and appear in the interview.

We also have a complete Analytics interview package
2200 questions ebook (Rs.1999) + 23 ebook bundle for Data Science and Analyst role (Rs.1999)
4 one-hour mock interviews, every Saturday (top mate – Rs.1000 per interview)
4 career guidance sessions, 30 mins each on every Sunday (top mate – Rs.500 per session)
Resume review and improvement (Top mate – Rs.500 per review)

Total cost – Rs.10500
Discounted price – Rs. 9000


How to avail of this offer?
Send a mail to nitinkamal132@gmail.co
m

Myntra Senior Business Analyst Questions

Company – Myntra
Designation – Senior Business Analyst
Year of Experience required – 3 to 6 years
Technical expertise – SQL, Python, and Case Study
Salary offered – 20 to 30 LPA

Number of Rounds – In general there are 4 rounds + HR round. The first round could be offline test with 50 SQL questions or online test or one more round of SQL screening

Amazon Business Intelligence Engineer Interview Questions

Myntra Senior Business Analyst Questions
Myntra Senior Business Analyst Interview Questions

Myntra SQL Interview Questions

In an EmployeeDetails table, we have 3 columns:-

Emp_id, Emp_Name, and Mgr_id
The Manager id is nothing but the employee id of some employee. Example
1, A, 2
2, B, 3

3, C, 4

B is the manager of A and C is the manager of B.

Output required

                    Employee Name                  Manager Name
AB
BC
CD

Write a code in SQL to get the desired output.

Ans
SELECT e1.emp_Id EmployeeId, e1.emp_name EmployeeName, 

       e1.emp_mgr_id ManagerId, e2.emp_name AS ManagerName

FROM   tblEmployeeDetails e1

       JOIN tblEmployeeDetails e2

       ON e1.emp_mgr_id = e2.emp_id

Now in the above example, we have used Inner join as a part of the self join, the above will query will work fine for all the employees who have a Manager, but the Managing Director, CEO’s, etc. won’t necessarily have a Manager. What part of the query will you change to make sure all the employees of the company is present in the output.

Ans.
Instead of Inner Join, go for a left join. Thus, you will have all the employees name from this table and you can extract the name of

SELECT e1.emp_Id EmployeeId, e1.emp_name EmployeeName,  

       e1.emp_mgr_id ManagerId, e2.emp_name AS ManagerName 

FROM   tblEmployeeDetails e1 

       LEFT JOIN tblEmployeeDetails e2 

       ON e1.emp_mgr_id = e2.emp_id

What is a Cross-Join?
Cross join can be defined as a cartesian product of the two tables included in the join. The table after join contains the same number of rows as in the cross-product of the number of rows in the two tables.

SELECT stu.name, sub.subject 

FROM students AS stu

CROSS JOIN subjects AS sub;

What is an Index?
A database index is a data structure that provides a quick lookup of data in a column or columns of a table. It enhances the speed of operations accessing data from a database table at the cost of additional writes and memory to maintain the index data structure.

How do the SQL commands flow at the back end?

Order of execution for an SQL query

1) FROM, including JOINs

2) WHERE

3) GROUP BY

4) HAVING

5) WINDOW Functions

6) SELECT

7) DISTINCT

8) UNION

9) ORDER BY

10) LIMIT AND OFFSET

Write a query to get all the student with name length 10, starting with K and ending with z.
select name 
from student 
where length(name)=10 and lower(name) like ‘k%z’

Write a SQL query to get the second highest query using Ranking

Note: Dense_rank() has been used to handle duplicate salaries if there are any.

With result as

{
select salary,
dense_rank() over (order by salary desc) as salaryrank
from employees
}
select top 1 salary

 from result 

where salaryrank = 2

Can you use HAVING command without any aggregate function in SQL?

No it’s not necessary for having to use aggregate functions and even without group by having can exist.

Eg: This query works well in PostgreSql

select 1 having 1 = 1;

What is the difference between COUNT(*) and COUNT(ColName)?

COUNT(*) : It will return total number of records in table.
COUNT(ColName) : It will return total number of records where value for that ColName is Not-Null.

Eg: Table A

ID, Name, Dept

1,’A’,’D1′

2,’B’,NULL

3,’C’,’D5′

COUNT(*) : 3

COUNT(Dept) : 2

COUNT(ID) : 3

What is indexing in SQL?
An index can be used to efficiently find all rows matching some column in your query and then walk through only that subset of the table to find exact matches. If you don’t have indexes on any column in the WHERE clause, the SQL server has to walk through the whole table and check every row to see if it matches, which may be a slow operation on big tables.

Creating an index involves the CREATE INDEX statement, which allows you to name the index,
to specify the table and which column or columns to index, and to indicate whether the index
is in an ascending or descending order.

Basic syntax

CREATE INDEX index_name ON table_name;

Single Column Index

CREATE INDEX index_name

ON table_name (column_name);

Unique Index

CREATE UNIQUE INDEX index_name

on table_name (column_name);

Myntra Case Study Interview Questions

The profit of a company selling mobile back cover is declining. List out all the possible reasons

Following is the way in which discussion proceeded with the interviewer:-

 1. The demand itself has declined i.e. customers are not using cover that much. Asked to think more by the interviewer

2. Maybe the competitor is also facing loss which again means that the demand is low. Competitors are making a decent profit

3. Bad Marketing – The company is not putting stalls or shops in a crowded place. The interviewer told that the company was making a decent profit 6 months back

4. Maybe the footfall of the mall or place decreased. Could be(first positive response)

5. Maybe a popular mobile phone shop has shifted somewhere else. Could be(again a so-so response)

6. Maybe the other companies have reduced the price of their product which is why customers are drifting to these companies. The interviewer seemed pleased

7. New technology in the cover market to make covers more durable and the company we are talking about is using the same old technology. Seemed good enough point

8. Since we are talking about back covers, there could be new or trending designs which are not produced by the company

9. The company has not registered on different e-commerce websites and the website they are present on is not doing good business. He looked satisfied with the point

Myntra Big Data and Python Interview Questions

What is Hive Metastore?

Answer: Hive megastore is a database that stores metadata about your Hive tables (eg. Table name, column names and types, table location, storage handler being used, number of buckets in the table, sorting columns if any, partition columns if any, etc.).

When you create a table, this megastore gets updated with the information related to the new table which gets queried when you issue queries on that table.

Hive is a central repository of hive metadata. it has 2 parts of services and data. by default, it uses derby DB in local disk. it is referred to as embedded megastore configuration. It tends to the limitation that only one session can be served at any given point of time.

Can you explain the difference between batch processing and stream processing, and when would you use one over the other?


Batch processing involves processing data in large volumes and in batches, while stream processing involves processing data in real-time as it arrives. Batch processing is typically used when dealing with large volumes of data that can be processed in batches, such as nightly processing of transactional data or log files. Stream processing, on the other hand, is used when immediate action is required, such as in real-time analytics or fraud detection.

What is a distributed file system, and how does it differ from a traditional file system?

A distributed file system is a file system that is distributed across multiple machines in a network. It allows multiple users to access the same files and data from different locations simultaneously. Distributed file systems are designed to be fault-tolerant and scalable, which makes them ideal for handling large amounts of data.

In contrast, traditional file systems are stored on a single machine and can only be accessed by one user at a time. Traditional file systems are not designed to handle large amounts of data or to be fault-tolerant.

Different file formats to store and process input data using Apache Hadoop

CSV Files 

CSV files are an ideal fit for exchanging data between hadoop and external systems. It is advisable not to use header and footer lines when using CSV files.

JSON Files

Every JSON File has its own record. JSON stores both data and schema together in a record and also enables complete schema evolution and splitability. However, JSON files do not support block-level compression.

Avro FIiles

This kind of file format is best suited for long term storage with Schema. Avro files store metadata with data and also let you specify independent schema for reading the files.

Parquet Files

A columnar file format that supports block level compression and is optimized for query performance as it allows selection of 10 or less columns from from 50+ columns records.

We have also collated all these real interview questions from 50+ companies in our book 2200+ Most Asked Analytics interview Questions(with Answers)

The Data Monk services

We are well known for our interview books and have 70+ e-book across Amazon and The Data Monk e-shop page . Following are best-seller combo packs and services that we are providing as of now

  1. YouTube channel covering all the interview-related important topics in SQL, Python, MS Excel, Machine Learning Algorithm, Statistics, and Direct Interview Questions
    Link – The Data Monk Youtube Channel
  2. Website – ~2000 completed solved Interview questions in SQL, Python, ML, and Case Study
    Link – The Data Monk website
  3. E-book shop – We have 70+ e-books available on our website and 3 bundles covering 2000+ solved interview questions. Do check it out
    Link – The Data E-shop Page
  4. Instagram Page – It covers only Most asked Questions and concepts (100+ posts). We have 100+ most asked interview topics explained in simple terms
    Link – The Data Monk Instagram page
  5. Mock Interviews/Career Guidance/Mentorship/Resume Making
    Book a slot on Top Mate

The Data Monk e-books

We know that each domain requires a different type of preparation, so we have divided our books in the same way:

1. 2200 Interview Questions to become Full Stack Analytics Professional – 2200 Most Asked Interview Questions
2.Data Scientist and Machine Learning Engineer -> 23 e-books covering all the ML Algorithms Interview Questions
3. 30 Days Analytics Course – Most Asked Interview Questions from 30 crucial topics

You can check out all the other e-books on our e-shop page – Do not miss it


For any information related to courses or e-books, please send an email to nitinkamal132@gmail.com

Case Study – KPIs for the e-commerce industry

KPKPIs for the e-commerce industry, this article has the top 20 metrics/KPIs that are asked in the e-commerce interviews.

Expect these questions to be asked in companies like Amazon, Swiggy, Licious, Flipkart, Uber, Ola, Myntra, OYO, etc.
P.S. – Comment if you know more metrics/KPIs for the e-commerce industry


KPIs for the e-commerce industry

Case Study – Come up with the top 20 metrics that you should show to the Leadership of an e-commerce industry

Approach – Think on the lines of inventory, supply, demand, digital metric,s CSAT score, time to purchase, session times, etc.

To make your life easier we have the following 20 KPIs that you can start with (brownie point – You can use these KPIs for other industries as well)

  1. Website Traffic: Total number of visitors to your website.
  2. Conversion Rate: Percentage of website visitors who make a purchase.
  3. Average Order Value (AOV): The average amount of money customers spend per order.
  4. Cart Abandonment Rate: The percentage of visitors who add items to their cart but don’t complete the purchase.
  5. Customer Acquisition Cost (CAC): The cost of acquiring a new customer.
  6. Customer Lifetime Value (CLV): The total amount of money a customer is expected to spend over their lifetime.
  7. Repeat Customer Rate: The percentage of customers who make a repeat purchase.
  8. Net Promoter Score (NPS): A measure of customer loyalty and satisfaction.
  9. Email Open Rate: The percentage of subscribers who open your marketing emails.
  10. Email Click-Through Rate (CTR): The percentage of subscribers who click on links in your marketing emails.
  11. Social Media Engagement: The number of likes, comments, and shares your social media posts receive.
  12. Return on Ad Spend (ROAS): The revenue generated by your advertising campaigns divided by the cost of the campaigns.
  13. Average Revenue per User (ARPU): The average amount of revenue generated per user.
  14. Gross Profit Margin: The percentage of revenue that is profit after deducting the cost of goods sold.
  15. Inventory Turnover: The rate at which you sell and replace inventory.
  16. Fulfillment Time: The time it takes from when an order is placed to when it is shipped.
  17. Shipping Time: The time it takes for a customer to receive their order after it has been shipped.
  18. Customer Satisfaction (CSAT) Score: A measure of customer satisfaction with their purchase experience.
  19. Customer Churn Rate: The percentage of customers who stop doing business with your company.
  20. Abandoned Cart Recovery Rate: The percentage of abandoned carts that are recovered through follow-up email campaigns or other means.

Now we are also available on our website where you can directly download the PDF of the topic you are interested in. On Amazon, each book costs ~299, on our website we have put it at a 60-80% discount. There are ~4000 solved interview questions prepared for you.

10 e-book bundle with 1400 interview questions spread across SQL, Python, Statistics, Case Studies, and Machine Learning AlgorithmsIdeal for 0-3 years experienced candidates

23 E-book with ~2000 interview questions spread across AWS, SQL, Python, 10+ ML algorithms, MS Excel, and Case StudiesComplete Package for someone between 0 to 8 years of experience (The above 10 e-book bundle has a completely different set of e-books)

12 E-books for 12 Machine Learning algorithms with 1000+ interview questionsFor those candidates who want to include any Machine Learning Algorithm in their resume and to learn/revise the important concepts. These 12 e-books are a part of the 23 e-book package

Individual 50+ e-books on separate topics

The Data Monk services

We are well known for our interview books and have 70+ e-book across Amazon and The Data Monk e-shop page . Following are best-seller combo packs and services that we are providing as of now

  1. YouTube channel covering all the interview-related important topics in SQL, Python, MS Excel, Machine Learning Algorithm, Statistics, and Direct Interview Questions
    Link – The Data Monk Youtube Channel
  2. Website – ~2000 completed solved Interview questions in SQL, Python, ML, and Case Study
    Link – The Data Monk website
  3. E-book shop – We have 70+ e-books available on our website and 3 bundles covering 2000+ solved interview questions. Do check it out
    Link – The Data E-shop Page
  4. Instagram Page – It covers only Most asked Questions and concepts (100+ posts). We have 100+ most asked interview topics explained in simple terms
    Link – The Data Monk Instagram page
  5. Mock Interviews/Career Guidance/Mentorship/Resume Making
    Book a slot on Top Mate

The Data Monk e-books

We know that each domain requires a different type of preparation, so we have divided our books in the same way:

1. 2200 Interview Questions to become Full Stack Analytics Professional – 2200 Most Asked Interview Questions
2.Data Scientist and Machine Learning Engineer -> 23 e-books covering all the ML Algorithms Interview Questions
3. 30 Days Analytics Course – Most Asked Interview Questions from 30 crucial topics

You can check out all the other e-books on our e-shop page – Do not miss it


For any information related to courses or e-books, please send an email to nitinkamal132@gmail.com

Meesho Case Study Question Dec’21

Meesho Case Study Question

The following question has been asked in the second round of interviews for the Senior Business Analyst at Meesho. The same type of question was asked a couple of years back in Sapient and more companies, and it was published on The Data Monk long back. So, do practice the case study given below.

Topic – Recommendation of food items to a new customer in a restaurant

It was not the exact case study but was very very similar to the one given below

Meesho Case Study Question

Meesho Case Study Question


Punjabi By Nature, a restaurant in Bangalore, delivers and serves food to its customer. It has been in the business for the last 10 years. Recently the owner heard about Data Science and they want to leverage the opportunity in order to boost its revenue. The restaurant has been collecting the following data since the last 10 years:-
1. Name of Customer
2. Sex of Customer
3. Age of Customer
4. Food item code

Your job is to recommend 2 food items to a customer new to the restaurant. Answer the following questions:-

a. Looking at the data, provide 3 findings for the restaurant to boost their performance

Proposed Solution.

i. Food item combination can help you recommend a particular item. For example, if people prefer curd with Parathas, then you can recommend it
ii. A list of the most popular food item
iii. Looking at the customer’s age and sex you can decide what to offer to a new customer. If the data suggests that a girl in the age group 20-25 likes chocolate ice cream then you can recommend this ice cream to the new girl customer 

b. Think of 4 more data points that might help you with the analysis

Proposed Solution

i. Pincode of delivery
ii. Time of order
iii. Phone Number
iv. Date and Day of service 

c. Now, what else can you find out from this data?

Proposed Solution

i. Day of service can get you the popular food item on each day and weekend
ii. Pincode can help you identify if there is a demand for some specific food items in a particular area
iii. The phone number to inform about new offers
iv. Time of order can get you the time at which the restaurant should shoot a particular offer for a specific food item

Please attempt the question below and we will evaluate each solution.

The Data Monk services

We are well known for our interview books and have 70+ e-book across Amazon and The Data Monk e-shop page . Following are best-seller combo packs and services that we are providing as of now

  1. YouTube channel covering all the interview-related important topics in SQL, Python, MS Excel, Machine Learning Algorithm, Statistics, and Direct Interview Questions
    Link – The Data Monk Youtube Channel
  2. Website – ~2000 completed solved Interview questions in SQL, Python, ML, and Case Study
    Link – The Data Monk website
  3. E-book shop – We have 70+ e-books available on our website and 3 bundles covering 2000+ solved interview questions. Do check it out
    Link – The Data E-shop Page
  4. Instagram Page – It covers only Most asked Questions and concepts (100+ posts). We have 100+ most asked interview topics explained in simple terms
    Link – The Data Monk Instagram page
  5. Mock Interviews/Career Guidance/Mentorship/Resume Making
    Book a slot on Top Mate

The Data Monk e-books

We know that each domain requires a different type of preparation, so we have divided our books in the same way:

1. 2200 Interview Questions to become Full Stack Analytics Professional – 2200 Most Asked Interview Questions
2.Data Scientist and Machine Learning Engineer -> 23 e-books covering all the ML Algorithms Interview Questions
3. 30 Days Analytics Course – Most Asked Interview Questions from 30 crucial topics

You can check out all the other e-books on our e-shop page – Do not miss it


For any information related to courses or e-books, please send an email to nitinkamal132@gmail.com

Understand these E-commerce metrics before applying

What is this blog about?

In this blog, e-commerce metrics, we will try to understand different things which are asked in a company that focuses on their website or application conversion. Web analytics is a way to understand the sentiments of your online users, why they are buying what they are buying and what they are not buying because by the end everything boils down to a user buying something on the internet.

So, in the blog “Metrics to know before applying to e-commerce companies” we will try to solve a few things for you that will make you comfortable when you apply to some of these companies

Target companies?

With this blog, you will be able to come up with a strong candidature in companies like Myntra, Amazon, Flipkart, OYO rooms, Facebook, Linkedin, etc.

e-commerce metrics
e-commerce metrics



So if you are already in the analytics domain or are looking forward to applying to one such company in the coming months, then do give a read to this blog.

What is the need of knowing these metrics?

When you apply to any of the e-commerce companies then there is an unsaid expectation that you should be aware of the things tracked, apart from that it’s always good to talk in the same lingua as used by your interviewer. Also, you will easily get some brownie points by explaining these points in the technical as well as case study rounds. These are the most important things to know after your technical expertise. Go prepared 🙂

Do I need any prior experience?

You are reading this blog on an online mode which means that you are well aware of the internet and that you know you are a visitor on this page. As long as you are comfortable with these points you do not need any other experience.

P.S. – We will also have a detailed video with live examples where you can understand concepts in a better way, if the link is not provided here, do check it out on our youtube channel i.e. The Data Monk

E-commerce metrics

Visitor – If you are reading this article then you are a visitor to our website

Unique Visitor – If you visit our website 30 times today then also you are only one unique visitor

Visits – Now you have made 30 visits to the website

Repeat visitor – Suppose The Data Monk defines the logic that a visit span is 30 days. If you come two times in the last 30 days then you are a repeat visitor

Return visitor – Suppose you came last time in Oct’21 and it’s currently Jan’22 then you are a return visitor

Views – number of times you visit a particular page is the number of views. Even if you refresh the webpage then also the number of views will increase

Session – If the admin of the website had defined a session to be of 30 minutes then accordingly a session id will be generated. Ex. you start at 11:00 in the morning and surf for 10 minutes, then come back at 4 in the evening, then a new session id will be generated for you

Bounce – If you close the website on the first page itself then it is termed as a bounce, though you will still be a visitor and your number of views will be 1

Click-Through Rate – The click-through rate refers to the percentage of people who click through a certain link compared to the total number of people who saw the link. For example, if 1,000 people see a Google ad and 10 of them click on that ad, that ad has a click-through rate of 1 percent. You should aim for a click-through rate on your Google Ads of about 3-5 percent

Impression – Number of times your advertisement or web link is shown to the customer on the online space. For example, when you google something then you get some sponsored links, you may get around 4-5 images at the top. It does. not matter if you click on these images or not, but there are impressions of these products. Suppose this same page is shown to 1000 people and only 10 people clicked on the one which is priced at Rs. 21900, then the CTR for the product id 1% with 1000 impressions and 10 clicks

Load Time – Load time refers to the amount of time it takes a page to appear when a user lands on it. About 30 percent of users will leave a website whose pages take longer than 3 seconds to load, so that number should be your benchmark. Optimize slower loading pages to maximize their speed.

Time on Page – Time spent by users on a particular page.

Session Time – What is the average time for which a user explores your website or app

Conversion – If you are selling a product then what is the conversion i.e. number of people entering the buy flow and the number of people actually buying something on the web portal.



What type of questions are asked in an interview (mostly in the case study round)?

You will b asked something like, “Think of the important metrics which you need to track for the CXOs to give them a glimpse of their daily business” or “What all the KPIs in an online market”

Now, once you know these 14-15 metrics then you are already 2 steps ahead of an unprepared candidate plus you have a lot of time to think of other derived metrics like a customer flow diagram, Customer Life Time Value (CLTV), the Failure rate of the final conversion page, etc.


Now you can start explaining things like:-

-Tracking the performance of the payment page

-What is the average bucket size of a customer

-Coupon code success rate

-Customer Life Time Value


If you have some more metrics which can be used to explain a fresher or beginner then do comment below.
Hope you liked the content of e-commerce metrics.

We will have the next blog on Customer Churn Analysis which is one of the most standard projects done in every e-commerce company and is very useful to understand before you appear for an interview

The Data Monk services

We are well known for our interview books and have 70+ e-book across Amazon and The Data Monk e-shop page . Following are best-seller combo packs and services that we are providing as of now

  1. YouTube channel covering all the interview-related important topics in SQL, Python, MS Excel, Machine Learning Algorithm, Statistics, and Direct Interview Questions
    Link – The Data Monk Youtube Channel
  2. Website – ~2000 completed solved Interview questions in SQL, Python, ML, and Case Study
    Link – The Data Monk website
  3. E-book shop – We have 70+ e-books available on our website and 3 bundles covering 2000+ solved interview questions. Do check it out
    Link – The Data E-shop Page
  4. Instagram Page – It covers only Most asked Questions and concepts (100+ posts). We have 100+ most asked interview topics explained in simple terms
    Link – The Data Monk Instagram page
  5. Mock Interviews/Career Guidance/Mentorship/Resume Making
    Book a slot on Top Mate

The Data Monk e-books

We know that each domain requires a different type of preparation, so we have divided our books in the same way:

1. 2200 Interview Questions to become Full Stack Analytics Professional – 2200 Most Asked Interview Questions
2.Data Scientist and Machine Learning Engineer -> 23 e-books covering all the ML Algorithms Interview Questions
3. 30 Days Analytics Course – Most Asked Interview Questions from 30 crucial topics

You can check out all the other e-books on our e-shop page – Do not miss it


For any information related to courses or e-books, please send an email to nitinkamal132@gmail.com



Uber Data Scientist Interview Questions

Uber Data Scientist Interview Questions
Company – Uber
Role – Data Scientist
Location – San Francisco, CA and India

Uber Data Scientist Interview Questions

Uber Data Scientist Interview Questions

Before you start, if you want to check Salary/30days road map/company wise interview questions then you can watch the following videos


Salary of Anlaytics jobs in Amazon,Flipkart,Myntra,OYO,Housing
Complete 30 Days Roadmap to crack Data Analyst Interview
Zomato Business Analyst Interview Questions
Round 1 -Resume Interview
Topics covered – Resume

Mode of interview – Phone
Duration – 60 Minutes
Level of Questions – Medium/Easy

A few questions from this round:

Round 2 – Technical Interview
Topics covered – Case Studies/ Machine Learning
Mode of interview – Phone
Duration – 45 minutes
Level of Questions – Medium

The question from this round:

Round 3- Take-Home Assignment
Topics- Data science and programming skills
Mode of Interview- Home
Duration – 1 week
Level of questions- Medium

A few questions from this round:

Round 4 – Technical
Topics covered -Machine Learning
Mode: Onsite
Duration – 2 hours
Level of Questions – medium
A few questions below from this round:

Attempt all the questions given above, we will evaluate and will let you know your selection score

The Data Monk services

We are well known for our interview books and have 70+ e-book across Amazon and The Data Monk e-shop page . Following are best-seller combo packs and services that we are providing as of now

  1. YouTube channel covering all the interview-related important topics in SQL, Python, MS Excel, Machine Learning Algorithm, Statistics, and Direct Interview Questions
    Link – The Data Monk Youtube Channel
  2. Website – ~2000 completed solved Interview questions in SQL, Python, ML, and Case Study
    Link – The Data Monk website
  3. E-book shop – We have 70+ e-books available on our website and 3 bundles covering 2000+ solved interview questions. Do check it out
    Link – The Data E-shop Page
  4. Instagram Page – It covers only Most asked Questions and concepts (100+ posts). We have 100+ most asked interview topics explained in simple terms
    Link – The Data Monk Instagram page
  5. Mock Interviews/Career Guidance/Mentorship/Resume Making
    Book a slot on Top Mate

The Data Monk e-books

We know that each domain requires a different type of preparation, so we have divided our books in the same way:

1. 2200 Interview Questions to become Full Stack Analytics Professional – 2200 Most Asked Interview Questions
2.Data Scientist and Machine Learning Engineer -> 23 e-books covering all the ML Algorithms Interview Questions
3. 30 Days Analytics Course – Most Asked Interview Questions from 30 crucial topics

You can check out all the other e-books on our e-shop page – Do not miss it


For any information related to courses or e-books, please send an email to nitinkamal132@gmail.com

Walmart Data Scientist Interview Questions – Updated 2023

Walmart Data Scientist Interview Questions – We interviewed a couple of folks working as a Data scientists at Walmart. According to them the interview will be quite technical in nature with a lot of emphasis on ML and Python. SQL questions are also asked(not more than 4-5). You can practice the questions below to get yourself familiar with Walmart Data Scientist Interview Questions

Role – Data Scientist
Location – Gurgaon, India


Salary of Anlaytics jobs in Amazon,Flipkart,Myntra,OYO,Housing
Complete 30 Days Roadmap to crack Data Analyst Interview
Zomato Business Analyst Interview Questions

Round 1 – Technical

Topics covered – Coding

Mode of interview – Hackerrank
Duration – 45 Minutes
Level of Questions – Easy
A few questions from this round:

Print all the branches in a binary tree
Join two sorted arrays

Round 2 – Technical Round

Topics covered – probability and statistics and big data questions
Mode of interview – Hangout
Duration – 1 hour
Level of Questions – Medium
What is the difference between Gradient Boosting and Random Forest?
What are the different types of Sampling methods that you have used?
Explain the difference between bagged and boosting models.
What is cross entropy?
What is multi-collinearity, how do you fix it in a regression?
What is the significance of log odds?
Give some problems or scenarios where map-reduce concept works well  and where it doesn’t work.
Given a dataset having employee id and manager id find the employees who are also managers ?
A person is using search engine to find something, you know nothing about her/him, how do you come up with am algorithm that will predict what she/he needs after the user types only a few letters ?

Round 3- Technical
Topics- Machine learning
Mode of Interview- Hangout
Duration – 1 hour
Level of questions- Medium

A few questions from this round:

Let’s say we want to build a model to predict booking prices on Airbnb. Between linear regression and random forest regression, which model would perform better and why?
 Generally, what happens to bias & variance as we increase the complexity of the model?
What is the intuition behind F1 score?
Describe how you would build a model to predict Uber ETAs after a rider requests a ride.

Round 4 – HR 

Topics covered -Experience
Mode: Telephone Call
Duration – 1 hour
Level of Questions – Mostly on projects

Some questions on past projects, ability to lead a team and previous responsibilities were discussed.
Offer was released in 3-4 days after the Hiring Manager round

Walmart Data Scientist Interview Questions

The Data Monk services

We are well known for our interview books and have 70+ e-book across Amazon and The Data Monk e-shop page . Following are best-seller combo packs and services that we are providing as of now

  1. YouTube channel covering all the interview-related important topics in SQL, Python, MS Excel, Machine Learning Algorithm, Statistics, and Direct Interview Questions
    Link – The Data Monk Youtube Channel
  2. Website – ~2000 completed solved Interview questions in SQL, Python, ML, and Case Study
    Link – The Data Monk website
  3. E-book shop – We have 70+ e-books available on our website and 3 bundles covering 2000+ solved interview questions. Do check it out
    Link – The Data E-shop Page
  4. Instagram Page – It covers only Most asked Questions and concepts (100+ posts). We have 100+ most asked interview topics explained in simple terms
    Link – The Data Monk Instagram page
  5. Mock Interviews/Career Guidance/Mentorship/Resume Making
    Book a slot on Top Mate

The Data Monk e-books

We know that each domain requires a different type of preparation, so we have divided our books in the same way:

1. 2200 Interview Questions to become Full Stack Analytics Professional – 2200 Most Asked Interview Questions
2.Data Scientist and Machine Learning Engineer -> 23 e-books covering all the ML Algorithms Interview Questions
3. 30 Days Analytics Course – Most Asked Interview Questions from 30 crucial topics

You can check out all the other e-books on our e-shop page – Do not miss it


For any information related to courses or e-books, please send an email to nitinkamal132@gmail.com


Myntra Data Science Interview Questions – Updated 2022

Myntra Data Science Interview Questions
Myntra Data Science Interview Questions

Today is Day 13 and we will deal with the recruitment process of Myntra
Myntra Data Science Interview Questions given below will guide you through the difficulty level of the questions asked.
Overall there are 4-5 rounds in the complete process
Round 1 – 50 SQL questions (MCQ) in one hour
Round 2 – Case Study and Guesstimate (Major rejection round)
Round 3 – Technical (SQL, Project, Statistics)
Round 4 – Technical Second round or Hiring Manager Round

The below 10 Myntra Data Science Interview Questions will help you get an idea of the questions.
We can not put the questions from the first round directly because that’s a standard Myntra Questions. The Questions in the first round were mostly around Basic to intermediate level with some questions on SQL Server side.
You can expect to cross this stage if you score more than 35 questions.
NO Negative marking at out time 🙂

You can also explore Amazon Interview Question
We add 10 Interview Questions Daily – https://thedatamonk.com/daily-quiz/

Lambda Function – https://thedatamonk.com/question/myntra-interview-question-write-a-lambda-function-that-multiplies-two-arguments/
Regular Expression – https://thedatamonk.com/question/myntra-interview-question-write-pattern-or-regular-expression-for-all-the-names-ending-with-t-or-tt/
Train and Test – https://thedatamonk.com/question/myntra-interview-question-how-to-split-a-dataset-into-train-and-test-in-python/
Box plot – https://thedatamonk.com/question/myntra-interview-question-how-useful-is-box-plot-graph/
Reverse Strong – https://thedatamonk.com/question/myntra-interview-question-reverse-string/
Variable Selection – https://thedatamonk.com/question/myntra-interview-question-what-should-be-the-value-of-a-good-variable-which-we-should-include-in-our-model/
Mobile Back Cover Case Study – https://thedatamonk.com/question/myntra-interview-question-case-study/
People you may know Case Study – https://thedatamonk.com/question/myntra-interview-question-case-study-2-design-people-you-may-know-feature-for-linkedin-or-facebook/
Loop in Python – https://thedatamonk.com/question/myntra-interview-question-simple-loop-problem/
Labmda Function – https://thedatamonk.com/question/myntra-interview-question-write-a-lambda-function-that-multiplies-two-arguments/

The Data Monk e-books

Tired of online courses costing 2 to 8 lakh and taking more than a year to complete?
Tired of going through 500+ hours of videos at a super slow pace?
We at The Data Monk believe that you have to start and complete things as quickly as possible. We believe in a target-based study where we break a topic into 100 questions and make sure that if you cover these questions you will surely be able to crack the interview questions. Rest all theory and practical can ONLY be learned while working in an organization.


Pick any of our books from our e-shop page and complete it in 6-8 hours, learn the 100 questions and write it in your resume. We guarantee you that you will nail 8 out of 10 interviews

We also have 3 bundles at a price that is affordable to everyone. We are a group of people placed in best of the product-based companies and we take 100+ interviews per week. Do we know what is being asked and what is not? So, just grab any of the following book bundles and give not more than 30 days to LEARN all the questions. We guarantee you that you will become a very strong candidate in any analytics interview

Set A – [3rd/4th year/ and 0 to 3 years of experience]

Crack any analytics or data science interview with our 1400+ interview questions which focus on multiple domains i.e. SQL, R, Python, Machine Learning, Statistics, and Visualization. – https://thedatamonk.com/product/books-to-crack-analytics-interview/

Set B – [0-5 Years of Experience]

1200+ Interview Questions on all the important Machine Learning algorithms (including complete Python code) Ada Boost, CNN, ANN, Forecasting (ARIMA, SARIMA, ARIMAX), Clustering, LSTM, SVM, Linear Regression, Logistic Regression, Sentiment Analysis, NLP, K-Mean – https://thedatamonk.com/product/machine-learning-interview-questions/

Set C – [0-7 Years of Experience]

2000+ interview questions that include 100 questions each on 12 most asked Machine Learning Algorithms, Python, Numpy and Pandas – 300 Interview Questions, Pandas,PCA,AWS,Data Preprocessing,Case Studies, and many more
https://thedatamonk.com/product/the-data-monk-e-book-bundle/

Note – Set C contains all the questions of Set B


Youtube Channel – The Data Monk

Unlike any other youtube channel, we do not teach basic stuff, we teach only topics that are asked in interviews. If the interviewer asks about p-value, we will have a video on that topic,
If the interviewer is interested in asking the sequence of execution of SQL commands then we will give you an overview of all the commands but stress so much on the question that can answer it comfortably in the interview. We definitely recommend you to follow our youtube channel for any topic that you are interested in or weak at
.

If you wish to get all the study material and topics to cover for an interview at one place, then you can subscribe to our channel. We have covered the complete syllabus of
Get all the youtube videos playlist on our youtube Channel – The Data Monk

Code in Python for Data Science – Understand one algorithm at a time in 30 minutes (theory and python code)
Company-wise Data Science Interview Questions – 15 videos on how to crack analytics interview
Complete Numpy Tutorial – 14 videos on all the functions and questions on Numpy
Complete Python Pandas Tutorial – 15 videos to completely cover Pandas
SQL Complete Playlist – 20 highly recommended videos to cover all the interview questions
Case Study and Guesstimates Complete Playlist –  Real-life interview case study asked in 2021
Statistics– 10 videos to completely cover Statistics for interviews


Lastly,
If you are in dire need of any help, be it book-wise or guidance-wise, then you can definitely connect with me on Linkedin. We will try to help as much as possible

Amazon Data Science Interview Questions – Updated 2022

Today is Day 12 and from today onwards we will take one company at a time and will try to solve 10 questions asked in these interviews.
We will start with Amazon Data Science Interview Questions.
The questions of Day 12 will have mixed questions asked in the third round.
Try to solve all of the following Amazon Data Science interview questions.

Amazon Data Science Interview Questions

If you are wondering where to read all the Questions asked in these Data Science interviews, then Do follow this link – https://thedatamonk.com/ds-career-path/

Following are the 10 Amazon Data Science questions

Statistics – https://thedatamonk.com/question/amazon-interview-question-what-percentage-of-value-lies-between-mean-and-one-standard-deviationboth-positive-and-negative/
Measure of Dispersion – https://thedatamonk.com/question/what-are-the-absolute-measures-of-dispersion/
Joining two tables – https://thedatamonk.com/question/important-conditions-for-joining-two-tables-on-a-key/
ISNULL and IFNULL in SQL – https://thedatamonk.com/question/what-is-the-use-of-ifnull-and-isnull-in-sql/
NTILE – https://thedatamonk.com/question/amazon-interview-question-what-is-ntile-with-syntax/
*args – https://thedatamonk.com/question/amazon-interview-questions-difference-between-args-and-kwargs/
describe – https://thedatamonk.com/question/amazon-interview-question-what-all-information-you-get-from-describe-in-python/
Sort a dictionary by key – https://thedatamonk.com/question/amazon-interview-question-how-to-sort-a-dictionary-by-key/
Remove duplicate from List – https://thedatamonk.com/question/amazon-interview-questions-how-to-remove-duplicates-from-a-list/
Remove duplicate from List without Set command – https://thedatamonk.com/question/how-to-remove-duplicates-from-a-list-without-using-set-data-type/

You can get previous days questions here

Day 1- Overview – https://thedatamonk.com/data-science-interview-question-day1/
Day 2- SQL – https://thedatamonk.com/sql-interview-questions/
Day 3- Joins in SQL –https://thedatamonk.com/joins-in-sql/
Day 4 – Statistics – https://thedatamonk.com/statistics-interview-question/
Day 5 – Machine Learning – https://thedatamonk.com/machine-learning-interview-question/
Day 6 – Forecasting – https://thedatamonk.com/forecasting-interview-questions/
Day 7 – ARIMA – https://thedatamonk.com/arima-interview-questions/
Day 8 – Python – https://thedatamonk.com/python-interview-questions/
Day 9 – Machine Learning – https://thedatamonk.com/machine-learning-interview-questions/
Day 10 – https://thedatamonk.com/r-interview-questions/
Day 11 – https://thedatamonk.com/sql-intermediate-interview-questions/

Try to answer all these questions by yourself or with the help of google ?

The Data Monk e-books

Tired of online courses costing 2 to 8 lakh and taking more than a year to complete?
Tired of going through 500+ hours of videos at a super slow pace?
We at The Data Monk believe that you have to start and complete things as quickly as possible. We believe in a target-based study where we break a topic into 100 questions and make sure that if you cover these questions you will surely be able to crack the interview questions. Rest all theory and practical can ONLY be learned while working in an organization.


Pick any of our books from our e-shop page and complete it in 6-8 hours, learn the 100 questions and write it in your resume. We guarantee you that you will nail 8 out of 10 interviews

We also have 3 bundles at a price that is affordable to everyone. We are a group of people placed in best of the product-based companies and we take 100+ interviews per week. Do we know what is being asked and what is not? So, just grab any of the following book bundles and give not more than 30 days to LEARN all the questions. We guarantee you that you will become a very strong candidate in any analytics interview

Set A – [3rd/4th year/ and 0 to 3 years of experience]

Crack any analytics or data science interview with our 1400+ interview questions which focus on multiple domains i.e. SQL, R, Python, Machine Learning, Statistics, and Visualization. – https://thedatamonk.com/product/books-to-crack-analytics-interview/

Set B – [0-5 Years of Experience]

1200+ Interview Questions on all the important Machine Learning algorithms (including complete Python code) Ada Boost, CNN, ANN, Forecasting (ARIMA, SARIMA, ARIMAX), Clustering, LSTM, SVM, Linear Regression, Logistic Regression, Sentiment Analysis, NLP, K-Mean – https://thedatamonk.com/product/machine-learning-interview-questions/

Set C – [0-7 Years of Experience]

2000+ interview questions that include 100 questions each on 12 most asked Machine Learning Algorithms, Python, Numpy and Pandas – 300 Interview Questions, Pandas,PCA,AWS,Data Preprocessing,Case Studies, and many more
https://thedatamonk.com/product/the-data-monk-e-book-bundle/

Note – Set C contains all the questions of Set B


Youtube Channel – The Data Monk

Unlike any other youtube channel, we do not teach basic stuff, we teach only topics that are asked in interviews. If the interviewer asks about p-value, we will have a video on that topic,
If the interviewer is interested in asking the sequence of execution of SQL commands then we will give you an overview of all the commands but stress so much on the question that can answer it comfortably in the interview. We definitely recommend you to follow our youtube channel for any topic that you are interested in or weak at
.

If you wish to get all the study material and topics to cover for an interview at one place, then you can subscribe to our channel. We have covered the complete syllabus of
Get all the youtube videos playlist on our youtube Channel – The Data Monk

Code in Python for Data Science – Understand one algorithm at a time in 30 minutes (theory and python code)
Company-wise Data Science Interview Questions – 15 videos on how to crack analytics interview
Complete Numpy Tutorial – 14 videos on all the functions and questions on Numpy
Complete Python Pandas Tutorial – 15 videos to completely cover Pandas
SQL Complete Playlist – 20 highly recommended videos to cover all the interview questions
Case Study and Guesstimates Complete Playlist –  Real-life interview case study asked in 2021
Statistics– 10 videos to completely cover Statistics for interviews


Lastly,
If you are in dire need of any help, be it book-wise or guidance-wise, then you can definitely connect with me on Linkedin. We will try to help as much as possible