Upload Button Icon Add office photos

SPRINKLR

Compare button icon Compare button icon Compare

Filter interviews by

SPRINKLR Production Analyst Interview Questions, Process, and Tips

Updated 14 May 2024

Top SPRINKLR Production Analyst Interview Questions and Answers

  • Q1. Minimum Time To Solve The Problems Given 'N' subjects, each containing a certain number of problems, and 'K' friends, assign subjects to friends such that each subject g ...read more
  • Q2. Maximum of All Subarrays of Size K You are provided with an array A containing N integers. Your task is to determine the maximum element in every contiguous subarray of ...read more
  • Q3. Shortest Path in a Binary Matrix Problem Statement Given a binary matrix of size N * M where each element is either 0 or 1, find the shortest path from a source cell to ...read more

SPRINKLR Production Analyst Interview Experiences

6 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

OREPRE WELL PREPARE WELL PREPARE WELL PREPARE WELL

Round 2 - One-on-one 

(2 Questions)

  • Q1. CAE INTERVIEW CASE INTERVIEW CASE
  • Q2. GUESSTIMATE PRODUCT DESING
  • Ans. 

    Guesstimate the design of a product.

    • Consider the purpose and functionality of the product.

    • Analyze similar existing products in the market.

    • Take into account user preferences and feedback.

    • Consider the materials, manufacturing processes, and cost constraints.

    • Iterate and refine the design based on feedback and testing.

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Case study on the managing customer

Production Analyst Interview Questions Asked at Other Companies

asked in SPRINKLR
Q1. Minimum Time To Solve The Problems Given 'N' subjects, each conta ... read more
asked in CRED
Q2. you are PM of Netflix what will be the top 3 metrics you will loo ... read more
asked in SPRINKLR
Q3. Maximum of All Subarrays of Size K You are provided with an array ... read more
asked in SPRINKLR
Q4. LRU Cache Design Question Design a data structure for a Least Rec ... read more
asked in SPRINKLR
Q5. Shortest Path in a Binary Matrix Problem Statement Given a binary ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 - Aptitude Test 

Math + Probability
Basic Aptitude questions over two rounds.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Puzzles, Quizzes, Aptitude Questions, HR Questions
  • Q2. Questions regarding what you would do in various situations, as well as guesstimates.

Production Analyst Interview Questions & Answers

user image Nikhil kumar 2K19AE038

posted on 14 May 2024

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

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

Round 1 - Aptitude Test 

General aptitude’s with basic question of reasoning

Round 2 - Case Study 

Business development case study

SPRINKLR interview questions for designations

 Operations Analyst

 (1)

 Business Analyst

 (1)

 Production Engineer

 (2)

 Senior Product Analyst

 (1)

 Security Analyst

 (1)

 Product Business Analyst

 (1)

 Associate Product Manager

 (4)

 Customer Success Manager

 (3)

I applied via Naukri.com and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quantitative reasoning questions probability, permutations combinations, data interpretation and other important topics.

Round 2 - Technical 

(1 Question)

  • Q1. Introduce yourself ,why do you want to join this particular organization, project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and speak honestly. It will help you a lot during the interview process

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

The test consists of 3 coding questions ranging from medium to high.

  • Q1. 

    Minimum Time To Solve The Problems

    Given 'N' subjects, each containing a certain number of problems, and 'K' friends, assign subjects to friends such that each subject goes to exactly one friend, maintain...

  • Ans. 

    Assign subjects to friends to minimize maximum workload, find minimum time for most loaded friend.

    • Assign subjects contiguously to minimize maximum workload

    • Determine the minimum possible time required for the most loaded friend

    • Example: N=4, K=2, subjects={50, 100, 300, 400} -> Output: 400

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30-40 minutes
Round difficulty - Medium

This was a technical interview first round which was based on Machine Learning, Deep Learning, Data Structures, and other computer science fundamentals.
In Machine Learning, they asked me regarding error functions, loss functions, overfitting, techniques to overcome overfitting, underfitting and techniques to handle missing values in the dataset. The next question was coding one and the question was to find the maximum element in the array in the window of size k.( gave solution starting from bruit force to Optimized one)

  • Q1. 

    Maximum of All Subarrays of Size K

    You are provided with an array A containing N integers. Your task is to determine the maximum element in every contiguous subarray of size K as you move from left to rig...

  • Ans. 

    Find the maximum element in every contiguous subarray of size K as you move from left to right through the array.

    • Iterate through the array and maintain a deque to store the indices of elements in decreasing order.

    • Pop elements from the deque that are out of the current window.

    • Keep track of the maximum element in each window and output the results.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30-40 minutes
Round difficulty - Medium

This was my technical round 2.

  • Q1. 

    Shortest Path in a Binary Matrix Problem Statement

    Given a binary matrix of size N * M where each element is either 0 or 1, find the shortest path from a source cell to a destination cell, consisting only...

  • Ans. 

    Find the shortest path in a binary matrix from a source cell to a destination cell consisting only of 1s.

    • Use Breadth First Search (BFS) algorithm to find the shortest path.

    • Keep track of visited cells to avoid revisiting them.

    • Consider all 4 possible directions to move from a cell: up, down, left, right.

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 30-40 minutes
Round difficulty - Medium

This was my technical round 3.The interviewer started with very basic maths questions like what is an eigenvalue, eigenvector, the inverse of a matrix, Does inverse exist for the rectangular matrix?
After that, he switched to the coding question
 

  • Q1. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with a given capacity.

    • Implement a doubly linked list to keep track of the order of keys based on their recent usage.

    • Use a hashmap to store key-value pairs for quick access and updates.

    • When capacity is reached, evict the least recently used item before inserting a new item.

    • Update the order of keys in the linked list whenever a k

  • Answered by AI
Round 5 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This is a cultural fitment testing round .

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as Product Analyst in GurgaonEligibility criterianoSprinklr interview preparation:Topics to prepare for the interview - Machine Learning, Deep Learning, Statistics, Python, Data structures and algorithms, OOPs, Dynamic programmingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Have atleast one internship in Data science or ML domain...Will help you to gain exposure
Tip 2 : Do good practice of advanced data structures like Tries,graphs etc.
Tip 3 : Be good in your communication

Application resume tips for other job seekers

Tip 1 : Keep your resume up to date and mention three or four good level projects which will give a good impression to the interviewer
Tip 2 : You should be well aware and knowledgeable about all the things that are mentioned in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Favorite product
  • Ans. 

    My favorite product is the iPhone because of its sleek design, user-friendly interface, and seamless integration with other Apple products.

    • Sleek design

    • User-friendly interface

    • Seamless integration with other Apple products

  • Answered by AI
  • Q2. Past experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Previous product that you owrked on
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Resume overview
  • Q2. Product case studies
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Product roadmap
Interview experience
3
Average
Difficulty level
-
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Questions on guesstimates
  • Q2. Questions on previous work experience
  • Q3. Questions on agile methodology
  • Q4. Vertical based understanding

SPRINKLR Interview FAQs

How many rounds are there in SPRINKLR Production Analyst interview?
SPRINKLR interview process usually has 2 rounds. The most common rounds in the SPRINKLR interview process are Aptitude Test, One-on-one Round and Technical.
How to prepare for SPRINKLR Production 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 SPRINKLR. The most common topics and skills that interviewers at SPRINKLR expect are Product Management, Enterprise Software, Customer Experience Management, Product Analysis and Career Development.
What are the top questions asked in SPRINKLR Production Analyst interview?

Some of the top questions asked at the SPRINKLR Production Analyst interview -

  1. GUESSTIMATE PRODUCT DES...read more
  2. Case study on the managing custo...read more
  3. CAE INTERVIEW CASE INTERVIEW C...read more

Tell us how to improve this page.

SPRINKLR Production Analyst Interview Process

based on 4 interviews

1 Interview rounds

  • Aptitude Test Round
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 174 Interviews
AVASOFT Interview Questions
2.9
 • 164 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Thomson Reuters Interview Questions
4.1
 • 114 Interviews
Amadeus Interview Questions
3.9
 • 108 Interviews
UKG Interview Questions
3.1
 • 103 Interviews
EbixCash Limited Interview Questions
4.0
 • 102 Interviews
Atlassian Interview Questions
3.5
 • 89 Interviews
View all
SPRINKLR Production Analyst Salary
based on 130 salaries
₹10 L/yr - ₹22 L/yr
45% more than the average Production Analyst Salary in India
View more details

SPRINKLR Production Analyst Reviews and Ratings

based on 17 reviews

3.3/5

Rating in categories

3.1

Skill development

2.8

Work-life balance

3.8

Salary

3.1

Job security

3.2

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 17 Reviews and Ratings
Production Analyst
130 salaries
unlock blur

₹10 L/yr - ₹22 L/yr

Product Manager
101 salaries
unlock blur

₹15.7 L/yr - ₹41 L/yr

Senior Product Analyst
93 salaries
unlock blur

₹15 L/yr - ₹28 L/yr

Implementation Consultant
93 salaries
unlock blur

₹12 L/yr - ₹17.9 L/yr

Product Engineer
90 salaries
unlock blur

₹24 L/yr - ₹40 L/yr

Explore more salaries
Compare SPRINKLR with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

Chetu

3.3
Compare

R Systems International

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