Upload Button Icon Add office photos

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 ProblemsThere are 'N' number of subject ... read more
asked in SPRINKLR
Q2. Maximum of All Subarrays of Size KYou are given an array “A” of N ... read more
asked in SPRINKLR
Q3. LRU Cache ImplementationDesign and implement a data structure for ... read more
asked in SPRINKLR
Q4. Shortest Path in a Binary MatrixYou have been given a binary matr ... read more
asked in CRED
Q5. you are PM of Netflix what will be the top 3 metrics you will loo ... 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

 Business Analyst

 (1)

 Operations Analyst

 (1)

 Production Engineer

 (2)

 Senior Product Analyst

 (1)

 Security Analyst

 (1)

 Product Business Analyst

 (1)

 Customer Success Manager

 (3)

 Associate Product 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 was interviewed 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. 

    I solved it using Binary Search Algorithm.

  • Answered Anonymously
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. 

    1.Create a queue to store k elements.

    2.Run a loop and insert till index less than k(window size) in the queue.

    3.Then for an index greater than equal to k, check the greater element of the current queue and output it. And then

    to slide the window, dequeue the first element of the queue, and enqueue new element of the current index in the

    queue.

    4.And when the loop completes, check the greater element of the queue outside t

  • Answered Anonymously
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. 

    1. Initialize distances of all vertices as infinite.
    2. Create an empty priority_queue pq. Every item of pq is a pair (weight, vertex). Weight (or distance) is used as the first item of pair as the first item is by default used to compare two pairs
    3. Insert source vertex into pq and make its distance as 0.  While either pq doesn't become empty
    a) Extract minimum distance vertex from pq. Let the extracted vertex be u...

  • Answered Anonymously
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. Array Approach

    We will use an array of type Pair<key, value> to implement our LRU Cache where the larger the index is, the more recently the key is used. Means, the 0th index denotes the least recently used pair, and the last index denotes the most recently used pair.

     

    The key will be considered as accessed if we try to perform any operation on it. So while performing the get operation on a key, we will do a ...

  • Answered Anonymously
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
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Atharva College of Engineering, Mumbai and was interviewed in Sep 2023. 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 - Aptitude Test 

It was quite difficult there was questions regarding probability and numbers system

Round 3 - Group Discussion 

It was easy compared to other rounds

Round 4 - HR 

(3 Questions)

  • Q1. Tell me about your project
  • Q2. Asked about internship
  • Q3. Favourite subject in college and why so

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company with decent package

I applied via Recruitment Consultant and was interviewed in Jul 2021. There were 6 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Tell us about your recent project and different BA techniques used.
  • Q2. What are the elements of writing good user stories?
  • Ans. 

    Good user stories have clear goals, are specific, and focus on the user's needs.

    • Clearly define the user and their goal

    • Be specific and avoid ambiguity

    • Focus on the user's needs and motivations

    • Use simple language and avoid technical jargon

    • Include acceptance criteria to define success

    • Keep the story small and manageable

  • Answered by AI
  • Q3. What are the different diagrams you have used to explain requirements clearly?
  • Ans. 

    I have used various diagrams such as use case diagrams, activity diagrams, sequence diagrams, and flowcharts to explain requirements.

    • Use case diagrams to show the interactions between actors and the system

    • Activity diagrams to show the flow of activities within a process

    • Sequence diagrams to show the interactions between objects in a system

    • Flowcharts to show the flow of steps in a process

    • ER diagrams to show the relations...

  • Answered by AI
  • Q4. Scenario based questions based on requirement gathering.
  • Q5. Why did you become interested in BA role specifically?
  • Q6. How do you handle conflicts between two stakeholders?
  • Ans. 

    I would listen to both parties, understand their concerns, and try to find a mutually beneficial solution.

    • Listen actively to both parties and understand their perspectives

    • Identify common ground and areas of compromise

    • Propose a solution that addresses the concerns of both parties

    • Communicate the proposed solution clearly and ensure buy-in from both parties

  • Answered by AI
  • Q7. What's your BA approach to new project?

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 interview rounds. Each interview round was complex than the last one. There are few things one should focus while interviewing for BA role in Globant.

1. Be confident while speaking about the work you have carried out in previous projects. Explain it in layman's terms.
2. Use Business Analysis keywords.
3. Prepare for Scenario based questions.
4. Learn wireframe tool, requirement management tool like Jira or Azure Devops.

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Assignment 

Aptitude test
1.20 questions
2. Email writing

Round 2 - Group Discussion 

I hade group discussion on the topic wfh vs wfo

Round 3 - Skill test 

(1 Question)

  • Q1. Email writing on particular topic
Round 4 - One-on-one 

(1 Question)

  • Q1. All basic interview questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic qns were asked related to process
Round 2 - One-on-one 

(1 Question)

  • Q1. Direct one to one discussion

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

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
Zoho Interview Questions
4.3
 • 508 Interviews
Globant Interview Questions
3.9
 • 169 Interviews
View all
SPRINKLR Production Analyst Salary
based on 128 salaries
₹10 L/yr - ₹21 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
128 salaries
unlock blur

₹10 L/yr - ₹21 L/yr

Product Manager
98 salaries
unlock blur

₹18 L/yr - ₹41 L/yr

Product Engineer
88 salaries
unlock blur

₹24 L/yr - ₹40 L/yr

Implementation Consultant
87 salaries
unlock blur

₹12 L/yr - ₹17.9 L/yr

Senior Product Analyst
76 salaries
unlock blur

₹10 L/yr - ₹28 L/yr

Explore more salaries
Compare SPRINKLR with

Freshworks

3.5
Compare

Zoho

4.3
Compare

HCLTech

3.5
Compare

TCS

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