Upload Button Icon Add office photos

SPRINKLR

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

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 SPRINKLR
Q2. Maximum of All Subarrays of Size K You are provided with an array ... read more
asked in CRED
Q3. you are PM of Netflix what will be the top 3 metrics you will loo ... 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 Resume 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)

 Associate Product Manager

 (3)

 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 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. 

    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
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2021. 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 Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. Self introduction, short term and long term Goals,
  • Q2. Strengths and weaknesses

Interview Preparation Tips

Interview preparation tips for other job seekers - I am ready to take on challenging assignments and have always been willing to step in when required. I can easily adapt to different situations at work and do my best to bring the best results to my organisation

Interview Questionnaire 

7 Questions

  • Q1. Java applets
  • Q2. Difference between java and c++
  • Ans. 

    Java is an object-oriented programming language while C++ is a general-purpose programming language.

    • Java is platform-independent while C++ is platform-dependent.

    • Java has automatic garbage collection while C++ requires manual memory management.

    • Java has a simpler syntax compared to C++.

    • Java has a built-in support for multithreading while C++ requires external libraries.

    • C++ allows for low-level memory manipulation while J...

  • Answered by AI
  • Q3. OOPS encapsulation etc
  • Q4. Tell me about yourself
  • Ans. 

    I am a dedicated and experienced Product Engineer with a passion for innovation and problem-solving.

    • I have a Bachelor's degree in Mechanical Engineering from XYZ University.

    • I have 5 years of experience working in product development and design.

    • I am proficient in CAD software such as SolidWorks and AutoCAD.

    • I have successfully launched several new products in the market, increasing company revenue by 20%.

    • I am a team play...

  • Answered by AI
  • Q5. Explain IOT in layman terms
  • Ans. 

    IOT is a network of physical devices that are connected and can communicate with each other to perform tasks.

    • IOT stands for Internet of Things

    • It involves connecting everyday devices to the internet

    • These devices can communicate with each other and with us

    • Examples include smart homes, wearable technology, and industrial sensors

  • Answered by AI
  • Q6. Why code in java
  • Ans. 

    Java is a popular language for its platform independence, object-oriented programming, and vast community support.

    • Java is platform-independent, meaning it can run on any operating system without modification.

    • Java is object-oriented, allowing for modular and reusable code.

    • Java has a vast community of developers and libraries, making it easy to find solutions to problems.

    • Java is used in a variety of applications, includi...

  • Answered by AI
  • Q7. Any relocation problem
  • Ans. 

    Relocation is not a problem for me.

    • I am open to relocating for the right opportunity.

    • I have experience relocating for previous jobs and have successfully adapted to new environments.

    • I am flexible and willing to adjust to new locations and cultures.

    • I understand the challenges that come with relocation and have a plan in place to handle them.

    • I have researched the potential relocation area and am excited about the opportu

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 2 sections of english and quantitative aptitude. 40 questions were to be answered.
After that there was coding round in which 2 questions were asked. 70 mins were provided.
Duration: 40 minutes
Total Questions: 40

Round: Technical Interview
Experience: This was a personal interview round and questions were asked froms OOPS and basic programming. They were basically looking for projects.

Round: HR Interview
Experience: This was a skype round and general questions were asked by the HR. They just wanted to test the basic knowledge and communication skills of the student.

Skills: Talking Ability, Coding Skills, Project
College Name: Netaji Subhas Institute Of Technology, Delhi

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. What is your grip on C?
  • Ans. 

    I have a strong grip on C programming language.

    • I have experience in writing efficient and optimized code in C.

    • I am familiar with data structures and algorithms in C.

    • I have worked on projects involving embedded systems and device drivers in C.

    • I have knowledge of memory management and pointers in C.

    • I have used C to develop applications in various domains such as networking, gaming, and system programming.

  • Answered by AI
  • Q2. How do you plan on coping up in IT?
  • Ans. 

    I plan on coping up in IT by continuously learning and adapting to new technologies and industry trends.

    • Continuously learning and staying updated with the latest technologies and industry trends

    • Taking up relevant courses, certifications, and attending workshops or conferences

    • Networking and collaborating with professionals in the IT field

    • Seeking mentorship and guidance from experienced professionals

    • Practicing problem-so...

  • Answered by AI
  • Q3. How do you cope under pressure?

Interview Preparation Tips

Round: Test
Experience: The test was ok, not too easy or not too bad. If you know your basics and have good time management skills. The test wouldn't be too much of a problem.
Tips: * Get good ground on your basics
* Manage time accordingly

Round: Technical Interview
Experience: I've learned that being cool and confident is the key. Though things tend to make you nervous, we can't let that get to us.
Tips: * Make sure what you're trying to say is put forward effectively
* Maintain clear precision in your answers

General Tips: * Enjoy your experience
* Realize there's nothing to lose
* Don't worry about making mistakes
*Be prepared
Good luck!
Skill Tips: * Be cool
* Be confident
* Maintain clarity
Skills: Critical Thinking, Working Under Pressure
College Name: university college of engineering, Osmania University

Skills evaluated in this interview

I applied via Campus Placement

Round 1 - HR 

(1 Question)

  • Q1. All the rounds were regarding the resume and previous work experience. There were a few behavioral questions asked based on the previous scenarios that were encountered. Fun interview experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with whatever you mention in your resume, they might take a small thing that showed up and then get into detail.
Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

INTERVIEWS

Gaboli

No Interviews

INTERVIEWS

Subros

No Interviews

INTERVIEWS

Wipro

No Interviews

INTERVIEWS

Penthara Technologies

No Interviews

INTERVIEWS

Traveloka

No Interviews

INTERVIEWS

SKF

No Interviews

INTERVIEWS

Paytm

No Interviews

INTERVIEWS

Deloitte

No Interviews

INTERVIEWS

Gaboli

No Interviews

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.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Chetu Interview Questions
3.3
 • 172 Interviews
View all
SPRINKLR Production Analyst Salary
based on 132 salaries
₹10 L/yr - ₹21 L/yr
46% 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
132 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
98 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Engineer
92 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Implementation Consultant
91 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Success Manager
78 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent