Upload Button Icon Add office photos

SPRINKLR

Compare button icon Compare button icon Compare

Filter interviews by

SPRINKLR Full Stack Engineer Interview Questions, Process, and Tips

Updated 12 Dec 2021

SPRINKLR Full Stack Engineer Interview Experiences

1 interview found

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Test was conducted on Hackerearth. 
Test consist of 3 questions (1 medium strings related question + 1 hard digit dp question + 1 hard lazy segment tree question)

  • Q1. 

    Next Smallest Palindrome Problem Statement

    Given a string representation of a number 'S', determine the smallest palindrome that is strictly greater than this number 'N'.

    Example:

    Input:
    3
    2
    99
    3
    123
    4
    4567
    ...
  • Ans. 

    The task is to find the smallest palindrome greater than a given number.

    • Iterate from the middle of the number and mirror the left side to form the palindrome.

    • Handle cases where the number is already a palindrome or has all 9s.

    • Consider odd and even length numbers separately.

    • Convert the string to integer for comparison and manipulation.

  • Answered by AI
  • Q2. 

    Count Subarrays with Sum Divisible by K

    Given an array ARR and an integer K, your task is to count all subarrays whose sum is divisible by the given integer K.

    Input:

    The first line of input contains an...
  • Ans. 

    Count the number of subarrays in an array whose sum is divisible by a given integer K.

    • Iterate through the array and keep track of the running sum modulo K.

    • Use a hashmap to store the frequency of remainders.

    • For each prefix sum, check how many previous prefix sums have the same remainder.

    • Return the total count of subarrays with sum divisible by K.

  • Answered by AI
  • Q3. 

    Minimum Operations to Equalize Array

    Given an integer array ARR of length N where ARR[i] = (2*i + 1), determine the minimum number of operations required to make all the elements of ARR equal. In a single...

  • Ans. 

    The minimum number of operations required to make all elements of the given array equal.

    • The array is generated based on the formula ARR[i] = (2*i + 1).

    • To equalize the array, increment one element and decrement another in each operation.

    • The number of operations needed is equal to the difference between the maximum and minimum elements in the array.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

Timing : 8:00 am - 9:30 am
The interview took place on google meet. The interviewer gave 1 coding question on google docs and have to write the code on google doc itself.
After 45 minutes a second interviewer came in the same meeting and he also gave a coding question in the same google doc.

  • Q1. 

    Rank from Stream Problem Statement

    Given an array of integers ARR and an integer K, determine the rank of the element ARR[K].

    Explanation:

    The rank of any element in ARR is defined as the number of elem...

  • Ans. 

    The task is to determine the rank of a specific element in an array based on the number of smaller elements before it.

    • Iterate through the array up to index K and count the number of elements smaller than ARR[K].

    • Return the count as the rank of ARR[K].

    • Handle multiple test cases by repeating the process for each case.

  • Answered by AI
  • Q2. 

    Edit Distance Problem Statement

    Given two strings S and T with lengths N and M respectively, your task is to find the "Edit Distance" between these strings.

    The Edit Distance is defined as the minimum nu...

  • Ans. 

    The task is to find the minimum number of operations required to convert one string into another using delete, replace, and insert operations.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the edit distances between substrings of the two input strings.

    • Fill up the array based on the minimum of three possible operations: insert, delete, or replace.

    • Return the value at the bottom right

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Timing : 10:30 am - 11:30 am
The interview took place on google meet. The interviewer gave 1 coding question on google docs and have to write the code on google doc itself.

  • Q1. 

    Smaller Elements Count Problem Statement

    Given an array of size N, return a count array such that COUNT[i] equals the number of elements which are smaller than ARR[i] on its right side.

    Input:

    Input For...
  • Ans. 

    Return an array where each element represents the count of smaller elements on its right side in the given array.

    • Iterate through the array from right to left and maintain a sorted list of elements encountered so far.

    • For each element, find its index in the sorted list to determine the count of smaller elements on its right side.

    • Use binary search or segment trees for efficient searching and updating of the sorted list.

  • Answered by AI
Round 4 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

Timing : 11:45am - 12:00 pm.
The interview took place on google meet.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Full Stack Engineer in DelhiEligibility criteria7 CGPASprinklr interview preparation:Topics to prepare for the interview - Data structures and Algorithms, Object Oriented Programming, Operating Systems, Database Managament System, Computer Networks, System DesignTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice data structures and algorithms daily.
Tip 2 : Do at least one project and be ready with any type of questions based on the project.
Tip 3 : Have a proper understanding of all the CS fundaments and OOPs concepts.
Tip 4 : If you have have learn basics of system design.

Application resume tips for other job seekers

Tip 1 : Do not mention such skills in which you are not so confident.
Tip 2 : Have at least one project.
Tip 3 : Do not keep so much of empty spaces.
Tip 4 : Use hyperlinks to attach your programming accounts and project (if it is hosted somewhere or else github).

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Static, abstract vs interface
Round 2 - Technical 

(1 Question)

  • Q1. Databindings, CTE(sql)
Round 3 - Technical 

(1 Question)

  • Q1. Exceptionfilter, middleware etc
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion & roles and responsiblities

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 Naukri.com and was interviewed before Apr 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 tips
Round 2 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing as such. Overall experience was good

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

Interview Questionnaire 

2 Questions

  • Q1. General questions related to Windows administration
  • Q2. Questions about lack of past with experience.

Interview Preparation Tips

Round: Technical Interview
Experience: Some questions regarding active directory and file sharing
Tips: Keep it real and answer what you know. Donot argue unless interviewer demands discussion.

Round: HR Interview
Experience: Some questions regarding active directory and file sharing
Tips: Keep it real and answer what you know. Donot argue unless interviewer demands discussion.

Round: HR Interview
Experience: I didn't have work experience of a company.
Tips: Will if you have reached hr stage and don't have certain document tell the truth. And explain why you don't have it. If you can arrange the doc, great. If you can't clearly state the same. And tell about the references you can share.

Skills: Technical Analysis

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

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 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.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 795 Interviews
Zoho Interview Questions
4.3
 • 507 Interviews
Chetu Interview Questions
3.3
 • 173 Interviews
View all
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