Upload Button Icon Add office photos

SPRINKLR

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

SPRINKLR Software Developer Intern Interview Questions, Process, and Tips

Updated 2 Sep 2023

Top SPRINKLR Software Developer Intern Interview Questions and Answers

  • Q1. Maximum Sum Path from Leaf to Root Given a binary tree with 'N' nodes, identify the path from a leaf node to the root node that has the maximum sum among all root-to-lea ...read more
  • Q2. Kth Largest Element Problem Statement Given an integer array and a number 'K', your task is to identify the kth largest element within the array. Input: The input starts ...read more
  • Q3. Merge Sort Linked List Problem Statement You are given a singly linked list of integers. Your task is to sort the linked list using the merge sort algorithm. Explanation ...read more
View all 6 questions

SPRINKLR Software Developer Intern Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Implement hashmaps
  • Ans. 

    Hashmaps are data structures that store key-value pairs for efficient retrieval.

    • Hashmaps use a hash function to map keys to indices in an array.

    • Collision resolution techniques like chaining or open addressing are used to handle multiple keys hashing to the same index.

    • Common operations on hashmaps include insertion, deletion, and lookup of key-value pairs.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. House robber leetcode

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared with dsa

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Medium

This round was held on Google Meet Video Call at 10 A.M.
There were 2 Interviewers and they were very helpful.

  • Q1. 

    Kth Largest Element Problem Statement

    Given an integer array and a number 'K', your task is to identify the kth largest element within the array.

    Input:

    The input starts with an integer 'T', which indic...
  • Ans. 

    Find the kth largest element in an integer array.

    • Sort the array in descending order to easily find the kth largest element.

    • Keep track of the kth largest element while sorting the array.

    • Return the kth largest element once the array is sorted.

  • Answered by AI
  • Q2. 

    Maximum Sum Path from Leaf to Root

    Given a binary tree with 'N' nodes, identify the path from a leaf node to the root node that has the maximum sum among all root-to-leaf paths.

    Example:

    All the possibl...

  • Ans. 

    Find the path from a leaf node to the root node with the maximum sum in a binary tree.

    • Traverse the binary tree from leaf to root while keeping track of the sum of each path.

    • Compare the sums of all paths and return the path with the maximum sum.

    • Use recursion to traverse the tree efficiently.

    • Handle cases where the node values can be negative.

    • Ensure to consider only one path with the maximum sum.

  • Answered by AI
Round 2 - Video Call 

Round duration - 55 minutes
Round difficulty - Medium

The round was 2nd technical round conducted through Google Meet.
There were 2 interviewers and they were helpful.
Timing was from 11:10 A.M - 12:00 P.M

Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Medium

Timing was 12:30 P.M. to 1:00 P.M.
It was held on Google Meet and HR was helpful.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as SDE - Intern in GurgaonEligibility criteria7 CGPA aboveSprinklr interview preparation:Topics to prepare for the interview - - Dynamic Programming- Sort and Search Algorithms- Graphs - Data Structures ( Priority Queue, stack, sets)- Greedy Algorithms- OOPS - DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Make a 1-pager Good Resume including atleast 1 project or previous work experience.
Tip 2 : Regularly Participate in Coding Contests on CodeForces and try to be Expert.
Tip 3 : Start practicing on Leetcode and InterviewBit 1 month before your Placement Drive and try solving approx 300+ questions.
Tip 4 : Contribute time for course subjects also like OS,DBMS,OOPS.

Application resume tips for other job seekers

Tip 1 : Keep it 1 page and mention only field specific achievements.(Nothing like Captain of Cricket Team in College)
Tip 2 : Mention atleast 1 project or past work experience.
Tip 3 :  Don't try to lie in resume as questions can be asked on the same in depth.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

I was interviewed before Sep 2020.

Round 1 - Video Call 

(3 Questions)

Round duration - 50 minutes
Round difficulty - Medium

This round was held on Google Meet Video Call at 10 A.M.
There were 2 Interviewers and they were very helpful.

  • Q1. 

    Merge Sort Linked List Problem Statement

    You are given a singly linked list of integers. Your task is to sort the linked list using the merge sort algorithm.

    Explanation:

    Merge Sort is a divide and conq...

  • Ans. 

    Implement merge sort algorithm to sort a singly linked list of integers.

    • Divide the linked list into two halves using slow and fast pointer technique.

    • Recursively sort the two halves.

    • Merge the sorted halves using a merge function.

    • Handle base cases like empty list or single node list.

    • Ensure the termination of the linked list with -1 at the end.

    • Example: Input: 3 1 2 -1, Output: 1 2 3 -1

  • Answered by AI
  • Q2. 

    Maximum Sum Path from Leaf to Root

    Given a binary tree with 'N' nodes, identify the path from a leaf node to the root node that has the maximum sum among all root-to-leaf paths.

    Example:

    All the possibl...

  • Ans. 

    Find the path from a leaf node to the root node with the maximum sum in a binary tree.

    • Traverse the binary tree from leaf to root while keeping track of the sum of each path.

    • Compare the sums of all paths and return the path with the maximum sum.

    • Use recursion to traverse the tree efficiently.

    • Handle cases where the node values can be negative.

    • Ensure to consider only root-to-leaf paths.

  • Answered by AI
  • Q3. What are the tables involved in the design of online applications like Uber?
  • Ans. 

    Tables involved in the design of online applications like Uber include users, drivers, trips, payments, and ratings.

    • Users table to store information about customers using the app

    • Drivers table to store information about drivers registered on the platform

    • Trips table to track details of each trip including start/end locations, distance, and fare

    • Payments table to record payment transactions between users and drivers

    • Ratings...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 55 Minutes
Round difficulty - Medium

The round was 2nd technical round conducted through Google Meet.
There were 2 interviewers and they were helpful.
Timing was from 11:10 A.M - 12:00 P.M

  • Q1. 

    Add Two Numbers Represented as Linked Lists

    Given two linked lists representing two non-negative integers, where the digits are stored in reverse order (i.e., starting from the least significant digit to ...

  • Ans. 

    Add two numbers represented as linked lists in reverse order and return the sum as a linked list.

    • Traverse both linked lists simultaneously while adding corresponding digits and carry.

    • Handle cases where one list is longer than the other.

    • Create a new linked list to store the sum digits in reverse order.

    • Remember to handle carry for the last digit sum.

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Medium

Timing was 12:30 P.M. to 1:00 P.M.
It was held on Google Meet and HR was helpful.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteria5 CGPA aboveSprinklr interview preparation:Topics to prepare for the interview - - Dynamic Programming- Sort and Search Algorithms- Graphs - Data Structures ( Priority Queue, stack, sets)- Greedy Algorithms- OOPS - DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Don't hesitate in taking a course from Coding Ninjas and waste time in thinking only to take or not, It is an Investment.
Tip 2 : Regularly Participate in Coding Contests on CodeForces.
Tip 3 : Start practicing on Leetcode and InterviewBit 1 month before your Placement Drive.

Application resume tips for other job seekers

Tip 1 : Keep it 1 page and mention only field specific achievements.(Nothing like Captain of Cricket Team in College)
Tip 2 : Mention atleast 1 project or past work experience.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

I was interviewed in Sep 2016.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills and ability to work in a team

    • Completed multiple projects including a web-based inventory management system

  • Answered by AI
  • Q2. Simple coding questions..Basically pattern.
  • Q3. And also they will ask about your projects.

Interview Preparation Tips

Round: Test
Experience: 60 multiple choice questions so have to manage time carefully.
Tips: Have to give equal importance to all the sections..So try to do well in all section.
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical + HR Interview
Experience: Don't panic...Only write those things that you know in your resume.

Skills: Smart Coding
College Name: Jaypee Institute Of Information Technology, Noida

I was interviewed in May 2017.

Interview Preparation Tips

Round: Test
Total Questions: 20

Round: Group Discussion
Duration: 1 hour

Skills: Coding Skills And Knowledge On Data Structures

I was interviewed in Jun 2017.

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes

Skills: Engineering Basics
Contribute & help others!
anonymous
You can choose to be anonymous

SPRINKLR Interview FAQs

How many rounds are there in SPRINKLR Software Developer Intern interview?
SPRINKLR interview process usually has 3 rounds. The most common rounds in the SPRINKLR interview process are Technical and Resume Shortlist.
What are the top questions asked in SPRINKLR Software Developer Intern interview?

Some of the top questions asked at the SPRINKLR Software Developer Intern interview -

  1. implement hashm...read more
  2. House robber leetc...read more

Recently Viewed

INTERVIEWS

Mediamint

No Interviews

INTERVIEWS

SPRINKLR

No Interviews

INTERVIEWS

Electrotherm

No Interviews

INTERVIEWS

IPG Mediabrands

No Interviews

SALARIES

Gujarat Alkalies & Chemicals

INTERVIEWS

SPRINKLR

No Interviews

INTERVIEWS

SPRINKLR

No Interviews

INTERVIEWS

IPG Mediabrands

No Interviews

INTERVIEWS

Electrotherm

No Interviews

DESIGNATION

Tell us how to improve this page.

SPRINKLR Software Developer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

SPRINKLR Software Developer Intern Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Production Analyst
128 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
99 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Engineer
94 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Implementation Consultant
91 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Success Manager
80 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